-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsyscall_symbol_addrs.us.txt
4234 lines (4234 loc) · 161 KB
/
syscall_symbol_addrs.us.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
overlay_syscalls = 0x80082540;
_gsmaker_entrypoint_0 = 0x80082548;
_gsmaker_entrypoint_1 = 0x80082550;
_gsmaker_entrypoint_2 = 0x80082558;
_gsmaker_entrypoint_3 = 0x80082560;
_gsmaker_entrypoint_4 = 0x80082568;
_gsmaker_entrypoint_5 = 0x80082570;
_gsmaker_entrypoint_6 = 0x80082578;
_gsmaker_entrypoint_7 = 0x80082580;
_gsmaker_entrypoint_8 = 0x80082588;
_gsmaker_entrypoint_9 = 0x80082590;
_gsmaker_entrypoint_10 = 0x80082598;
_gsmaker_entrypoint_11 = 0x800825A0;
_gsmaker_entrypoint_12 = 0x800825A8;
_gsmaker_entrypoint_13 = 0x800825B0;
_gsmaker_entrypoint_14 = 0x800825B8;
_gsmaker_entrypoint_15 = 0x800825C0;
_gsmaker_entrypoint_16 = 0x800825C8;
_gsmaker_entrypoint_17 = 0x800825D0;
_gsmaker_entrypoint_18 = 0x800825D8;
_gsmaker_entrypoint_19 = 0x800825E0;
_gsmaker_entrypoint_20 = 0x800825E8;
_gsmaker_entrypoint_21 = 0x800825F0;
_gsmaker_entrypoint_22 = 0x800825F8;
_gsmaker_entrypoint_23 = 0x80082600;
_gsmaker_entrypoint_24 = 0x80082608;
_gsmaker_entrypoint_25 = 0x80082610;
_anseq_entrypoint_0 = 0x80082618;
_anseq_entrypoint_1 = 0x80082620;
_anseq_entrypoint_2 = 0x80082628;
_anseq_entrypoint_3 = 0x80082630;
_anseq_entrypoint_4 = 0x80082638;
_anseq_entrypoint_5 = 0x80082640;
_anseq_entrypoint_6 = 0x80082648;
_anseq_entrypoint_7 = 0x80082650;
_anseq_entrypoint_8 = 0x80082658;
_anseq_entrypoint_9 = 0x80082660;
_seqdefine_entrypoint_0 = 0x80082668;
_bsbanbflip_end = 0x80082670;
_bsbanbflip_init = 0x80082678;
_bsbanbflip_update = 0x80082680;
_bsbanbflip_entrypoint_3 = 0x80082688;
_bsbanpackwhack_entrypoint_0 = 0x80082690;
_bsbanpackwhack_entrypoint_1 = 0x80082698;
_bsbanpackwhack_entrypoint_2 = 0x800826A0;
_bsbanpackwhack_entrypoint_3 = 0x800826A8;
_bsbansack_entrypoint_0 = 0x800826B0;
_bsbansack_entrypoint_1 = 0x800826B8;
_bsbansack_entrypoint_2 = 0x800826C0;
_bsbansack_entrypoint_3 = 0x800826C8;
_bsbansack_entrypoint_4 = 0x800826D0;
_bsbansack_entrypoint_5 = 0x800826D8;
_bsbansack_entrypoint_6 = 0x800826E0;
_bsbansack_entrypoint_7 = 0x800826E8;
_bsbansack_entrypoint_8 = 0x800826F0;
_bsbansack_entrypoint_9 = 0x800826F8;
_bsbanshack_entrypoint_0 = 0x80082700;
_bsbanshack_entrypoint_1 = 0x80082708;
_bsbanshack_entrypoint_2 = 0x80082710;
_bsbanshack_entrypoint_3 = 0x80082718;
_bsbanshack_entrypoint_4 = 0x80082720;
_bsbanshack_entrypoint_5 = 0x80082728;
_bsbanshack_entrypoint_6 = 0x80082730;
_bsbansnooze_entrypoint_0 = 0x80082738;
_bsbansnooze_entrypoint_1 = 0x80082740;
_bsbansnooze_entrypoint_2 = 0x80082748;
_bsbansnooze_entrypoint_3 = 0x80082750;
_bsbansnooze_entrypoint_4 = 0x80082758;
_bsbansnooze_entrypoint_5 = 0x80082760;
_bsbanswim_entrypoint_0 = 0x80082768;
_bsbanswim_entrypoint_1 = 0x80082770;
_bsbanswim_entrypoint_2 = 0x80082778;
_bsbanswim_entrypoint_3 = 0x80082780;
_bsbbarge_entrypoint_0 = 0x80082788;
_bsbbilldrill_entrypoint_0 = 0x80082790;
_bsbbilldrill_entrypoint_1 = 0x80082798;
_bsbbilldrill_entrypoint_2 = 0x800827A0;
_bsbbilldrill_entrypoint_3 = 0x800827A8;
_bsbbuster_entrypoint_0 = 0x800827B0;
_bsbabykaz_entrypoint_0 = 0x800827B8;
_bsbabykaz_entrypoint_1 = 0x800827C0;
_bsbabykaz_entrypoint_2 = 0x800827C8;
_bsbabykaz_entrypoint_3 = 0x800827D0;
_bsbabykaz_entrypoint_4 = 0x800827D8;
_bsbabykaz_entrypoint_5 = 0x800827E0;
_bsbabykaz_entrypoint_6 = 0x800827E8;
_bsbabykaz_entrypoint_7 = 0x800827F0;
_bsbabykaz_entrypoint_8 = 0x800827F8;
_bsbabykaz_entrypoint_9 = 0x80082800;
_bsbabykaz_entrypoint_10 = 0x80082808;
_bsbabykaz_entrypoint_11 = 0x80082810;
_bsbabykaz_entrypoint_12 = 0x80082818;
_bsbabykaz_entrypoint_13 = 0x80082820;
_bsbabykaz_entrypoint_14 = 0x80082828;
_bsbee_entrypoint_0 = 0x80082830;
_bsbee_entrypoint_1 = 0x80082838;
_bsbee_entrypoint_2 = 0x80082840;
_bsbeefly_entrypoint_0 = 0x80082848;
_bsbeefly_entrypoint_1 = 0x80082850;
_bsbeefly_entrypoint_2 = 0x80082858;
_bsbeefly_entrypoint_3 = 0x80082860;
_bsbeefly_entrypoint_4 = 0x80082868;
_bsbeemain_entrypoint_0 = 0x80082870;
_bsbeemain_entrypoint_1 = 0x80082878;
_bsbeemain_entrypoint_2 = 0x80082880;
_bsbeemain_entrypoint_3 = 0x80082888;
_bsbeemain_entrypoint_4 = 0x80082890;
_bsbeemain_entrypoint_5 = 0x80082898;
_bsbeemain_entrypoint_6 = 0x800828A0;
_bsbeemain_entrypoint_7 = 0x800828A8;
_bsbeemain_entrypoint_8 = 0x800828B0;
_bsbeemain_entrypoint_9 = 0x800828B8;
_bsbeemain_entrypoint_10 = 0x800828C0;
_bsbeemain_entrypoint_11 = 0x800828C8;
_bsbeggass_entrypoint_0 = 0x800828D0;
_bsbeggass_entrypoint_1 = 0x800828D8;
_bsbeggass_entrypoint_2 = 0x800828E0;
_bsbeggass_entrypoint_3 = 0x800828E8;
_bsbegghead_entrypoint_0 = 0x800828F0;
_bsbegghead_entrypoint_1 = 0x800828F8;
_bsbegghead_entrypoint_2 = 0x80082900;
_bsbegghead_entrypoint_3 = 0x80082908;
_bsbflap_init = 0x80082910;
_bsbflap_update = 0x80082918;
_bsbflap_end = 0x80082920;
_bsbflap_entrypoint_3 = 0x80082928;
_bsbflip_end = 0x80082930;
_bsbflip_init = 0x80082938;
_bsbflip_update = 0x80082940;
_bsbflip_entrypoint_3 = 0x80082948;
_bsbfly_entrypoint_0 = 0x80082950;
_bsbfly_entrypoint_1 = 0x80082958;
_bsbfly_entrypoint_2 = 0x80082960;
_bsbfly_entrypoint_3 = 0x80082968;
_bsbfly_entrypoint_4 = 0x80082970;
_bsbfly_entrypoint_5 = 0x80082978;
_bsbfly_entrypoint_6 = 0x80082980;
_bsbfly_entrypoint_7 = 0x80082988;
_bsbfly_entrypoint_8 = 0x80082990;
_bsbfly_entrypoint_9 = 0x80082998;
_bsbkflamethrower_entrypoint_0 = 0x800829A0;
_bsbkflamethrower_entrypoint_1 = 0x800829A8;
_bsbkflamethrower_entrypoint_2 = 0x800829B0;
_bsbkflamethrower_entrypoint_3 = 0x800829B8;
_bsbkflamethrower_entrypoint_4 = 0x800829C0;
_bsblongleg_entrypoint_0 = 0x800829C8;
_bsblongleg_entrypoint_1 = 0x800829D0;
_bsblongleg_entrypoint_2 = 0x800829D8;
_bsblongleg_entrypoint_3 = 0x800829E0;
_bsblongleg_entrypoint_4 = 0x800829E8;
_bsblongleg_entrypoint_5 = 0x800829F0;
_bsblongleg_entrypoint_6 = 0x800829F8;
_bsblongleg_entrypoint_7 = 0x80082A00;
_bsblongleg_entrypoint_8 = 0x80082A08;
_bsblongleg_entrypoint_9 = 0x80082A10;
_bsblongleg_entrypoint_10 = 0x80082A18;
_bsblongleg_entrypoint_11 = 0x80082A20;
_bsblongleg_entrypoint_12 = 0x80082A28;
_bsblongleg_entrypoint_13 = 0x80082A30;
_bsblongleg_entrypoint_14 = 0x80082A38;
_bsblongleg_entrypoint_15 = 0x80082A40;
_bsblongleg_entrypoint_16 = 0x80082A48;
_bsblongleg_entrypoint_17 = 0x80082A50;
_bsblongleg_entrypoint_18 = 0x80082A58;
_bsblongleg_entrypoint_19 = 0x80082A60;
_bsblongleg_entrypoint_20 = 0x80082A68;
_bsblongleg_entrypoint_21 = 0x80082A70;
_bsblongleg_entrypoint_22 = 0x80082A78;
_bsblongleg_entrypoint_23 = 0x80082A80;
_bsblongleg_entrypoint_24 = 0x80082A88;
_bsblongleg_entrypoint_25 = 0x80082A90;
_bsblongleg_entrypoint_26 = 0x80082A98;
_bsblongleg_entrypoint_27 = 0x80082AA0;
_bsblongleg_entrypoint_28 = 0x80082AA8;
_bsblongleg_entrypoint_29 = 0x80082AB0;
_bsblongleg_entrypoint_30 = 0x80082AB8;
_bsblongleg_entrypoint_31 = 0x80082AC0;
_bsbpeck_entrypoint_0 = 0x80082AC8;
_bsbpeck_entrypoint_1 = 0x80082AD0;
_bsbpeck_entrypoint_2 = 0x80082AD8;
_bsbpeck_entrypoint_3 = 0x80082AE0;
_bsbreegullbash_entrypoint_0 = 0x80082AE8;
_bsbreegullbash_entrypoint_1 = 0x80082AF0;
_bsbreegullbash_entrypoint_2 = 0x80082AF8;
_bsbreegullbash_entrypoint_3 = 0x80082B00;
_bsbshock_entrypoint_0 = 0x80082B08;
_bsbshock_entrypoint_1 = 0x80082B10;
_bsbshock_entrypoint_2 = 0x80082B18;
_bsbshock_entrypoint_3 = 0x80082B20;
_bsbshock_entrypoint_4 = 0x80082B28;
_bsbshock_entrypoint_5 = 0x80082B30;
_bsbshock_entrypoint_6 = 0x80082B38;
_bsbshock_entrypoint_7 = 0x80082B40;
_bsbswim_entrypoint_0 = 0x80082B48;
_bsbswim_entrypoint_1 = 0x80082B50;
_bsbswim_entrypoint_2 = 0x80082B58;
_bsbswim_entrypoint_3 = 0x80082B60;
_bsbswim_entrypoint_4 = 0x80082B68;
_bsbswim_entrypoint_5 = 0x80082B70;
_bsbswim_entrypoint_6 = 0x80082B78;
_bsbswim_entrypoint_7 = 0x80082B80;
_bsbswim_entrypoint_8 = 0x80082B88;
_bsbswim_entrypoint_9 = 0x80082B90;
_bsbswim_entrypoint_10 = 0x80082B98;
_bsbswim_entrypoint_11 = 0x80082BA0;
_bsbswim_entrypoint_12 = 0x80082BA8;
_bsbswim_entrypoint_13 = 0x80082BB0;
_bsbswim_entrypoint_14 = 0x80082BB8;
_bsbtrot_entrypoint_0 = 0x80082BC0;
_bsbtrot_entrypoint_1 = 0x80082BC8;
_bsbtrot_entrypoint_2 = 0x80082BD0;
_bsbtrot_entrypoint_3 = 0x80082BD8;
_bsbtrot_entrypoint_4 = 0x80082BE0;
_bsbtrot_entrypoint_5 = 0x80082BE8;
_bsbtrot_entrypoint_6 = 0x80082BF0;
_bsbtrot_entrypoint_7 = 0x80082BF8;
_bsbtrot_entrypoint_8 = 0x80082C00;
_bsbtrot_entrypoint_9 = 0x80082C08;
_bsbtrot_entrypoint_10 = 0x80082C10;
_bsbtrot_entrypoint_11 = 0x80082C18;
_bsbtrot_entrypoint_12 = 0x80082C20;
_bsbtrot_entrypoint_13 = 0x80082C28;
_bsbtrot_entrypoint_14 = 0x80082C30;
_bsbtrot_entrypoint_15 = 0x80082C38;
_bsbtrot_entrypoint_16 = 0x80082C40;
_bsbtrot_entrypoint_17 = 0x80082C48;
_bsbtrot_entrypoint_18 = 0x80082C50;
_bsbtrot_entrypoint_19 = 0x80082C58;
_bsbtrot_entrypoint_20 = 0x80082C60;
_bsbtrot_entrypoint_21 = 0x80082C68;
_bsbtrot_entrypoint_22 = 0x80082C70;
_bsbtrot_entrypoint_23 = 0x80082C78;
_bsbtrot_entrypoint_24 = 0x80082C80;
_bsbtrot_entrypoint_25 = 0x80082C88;
_bsbtrot_entrypoint_26 = 0x80082C90;
_bsbtrot_entrypoint_27 = 0x80082C98;
_bsbtrot_entrypoint_28 = 0x80082CA0;
_bsbtrot_entrypoint_29 = 0x80082CA8;
_bsbtrot_entrypoint_30 = 0x80082CB0;
_bsbtrot_entrypoint_31 = 0x80082CB8;
_bsbtrot_entrypoint_32 = 0x80082CC0;
_bsbtrot_entrypoint_33 = 0x80082CC8;
_bsbtrot_entrypoint_34 = 0x80082CD0;
_bsbtrot_entrypoint_35 = 0x80082CD8;
_bsbtrot_entrypoint_36 = 0x80082CE0;
_bsbtrot_entrypoint_37 = 0x80082CE8;
_bsbtrot_entrypoint_38 = 0x80082CF0;
_bsbtrot_entrypoint_39 = 0x80082CF8;
_bsbtrot_entrypoint_40 = 0x80082D00;
_bsbtrot_entrypoint_41 = 0x80082D08;
_bsbtrot_entrypoint_42 = 0x80082D10;
_bsbtrot_entrypoint_43 = 0x80082D18;
_bsbtrot_entrypoint_44 = 0x80082D20;
_bsbtrot_entrypoint_45 = 0x80082D28;
_bsbtrot_entrypoint_46 = 0x80082D30;
_bsbtrot_entrypoint_47 = 0x80082D38;
_bsbtrot_entrypoint_48 = 0x80082D40;
_bsbtrot_entrypoint_49 = 0x80082D48;
_bsbtrot_entrypoint_50 = 0x80082D50;
_bsbtrot_entrypoint_51 = 0x80082D58;
_bsbtrot_entrypoint_52 = 0x80082D60;
_bsbtrot_entrypoint_53 = 0x80082D68;
_bsbtrot_entrypoint_54 = 0x80082D70;
_bsbtrot_entrypoint_55 = 0x80082D78;
_bsbwhirl_entrypoint_0 = 0x80082D80;
_bsbwhirl_entrypoint_1 = 0x80082D88;
_bsbwhirl_entrypoint_2 = 0x80082D90;
_bsbwhirl_entrypoint_3 = 0x80082D98;
_bsbwhirl_entrypoint_4 = 0x80082DA0;
_bsbwhirl_entrypoint_5 = 0x80082DA8;
_bsbwhirl_entrypoint_6 = 0x80082DB0;
_bsbwhirl_entrypoint_7 = 0x80082DB8;
_bsbwhirl_entrypoint_8 = 0x80082DC0;
_bsbwhirl_entrypoint_9 = 0x80082DC8;
_bsbwhirl_entrypoint_10 = 0x80082DD0;
_bsbwhirl_entrypoint_11 = 0x80082DD8;
_bsbwhirl_entrypoint_12 = 0x80082DE0;
_bsbwhirl_entrypoint_13 = 0x80082DE8;
_bsbwhirl_entrypoint_14 = 0x80082DF0;
_bsbwhirl_entrypoint_15 = 0x80082DF8;
_bsbwhirl_entrypoint_16 = 0x80082E00;
_bsbwhirl_entrypoint_17 = 0x80082E08;
_bsbwhirl_entrypoint_18 = 0x80082E10;
_bsbwhirl_entrypoint_19 = 0x80082E18;
_bsbwhirl_entrypoint_20 = 0x80082E20;
_bsbwhirl_entrypoint_21 = 0x80082E28;
_bsbwhirl_entrypoint_22 = 0x80082E30;
_bsbwhirl_entrypoint_23 = 0x80082E38;
_bsbwhirl_entrypoint_24 = 0x80082E40;
_bsbwhirl_entrypoint_25 = 0x80082E48;
_bsbwhirl_entrypoint_26 = 0x80082E50;
_bsbwhirl_entrypoint_27 = 0x80082E58;
_bsbwhirl_entrypoint_28 = 0x80082E60;
_bscarry_entrypoint_0 = 0x80082E68;
_bscarry_entrypoint_1 = 0x80082E70;
_bscarry_entrypoint_2 = 0x80082E78;
_bscarry_entrypoint_3 = 0x80082E80;
_bscarry_entrypoint_4 = 0x80082E88;
_bschokedie_entrypoint_0 = 0x80082E90;
_bschokedie_entrypoint_1 = 0x80082E98;
_bschokedie_entrypoint_2 = 0x80082EA0;
_bschokedie_entrypoint_3 = 0x80082EA8;
_bsclaw_entrypoint_0 = 0x80082EB0;
_bsclaw_entrypoint_1 = 0x80082EB8;
_bsclaw_entrypoint_2 = 0x80082EC0;
_bsclaw_entrypoint_3 = 0x80082EC8;
_bsclimb_entrypoint_0 = 0x80082ED0;
_bsclimb_entrypoint_1 = 0x80082ED8;
_bsclimb_entrypoint_2 = 0x80082EE0;
_bsclimb_entrypoint_3 = 0x80082EE8;
_bsclimb_entrypoint_4 = 0x80082EF0;
_bsclimb_entrypoint_5 = 0x80082EF8;
_bsclimb_entrypoint_6 = 0x80082F00;
_bsclimb_entrypoint_7 = 0x80082F08;
_bsclimb_entrypoint_8 = 0x80082F10;
_bsclimb_entrypoint_9 = 0x80082F18;
_bsclimb_entrypoint_10 = 0x80082F20;
_bsclimb_entrypoint_11 = 0x80082F28;
_bsclimb_entrypoint_12 = 0x80082F30;
_bscrashout_entrypoint_0 = 0x80082F38;
_bscrashout_entrypoint_1 = 0x80082F40;
_bscrashout_entrypoint_2 = 0x80082F48;
_bscrashout_entrypoint_3 = 0x80082F50;
_bscrouch_entrypoint_0 = 0x80082F58;
_bscrouch_entrypoint_1 = 0x80082F60;
_bscrouch_entrypoint_2 = 0x80082F68;
_bscrouch_entrypoint_3 = 0x80082F70;
_bscrouch_entrypoint_4 = 0x80082F78;
_bsdie_entrypoint_0 = 0x80082F80;
_bsdie_entrypoint_1 = 0x80082F88;
_bsdie_entrypoint_2 = 0x80082F90;
_bsdie_entrypoint_3 = 0x80082F98;
_bsdie_entrypoint_4 = 0x80082FA0;
_bsdie_entrypoint_5 = 0x80082FA8;
_bsdie_entrypoint_6 = 0x80082FB0;
_bsdie_entrypoint_7 = 0x80082FB8;
_bsdie_entrypoint_8 = 0x80082FC0;
_bsdie_entrypoint_9 = 0x80082FC8;
_bsdie_entrypoint_10 = 0x80082FD0;
_bsdie_entrypoint_11 = 0x80082FD8;
_bsdrone_entrypoint_0 = 0x80082FE0;
_bsdrone_entrypoint_1 = 0x80082FE8;
_bsdrone_entrypoint_2 = 0x80082FF0;
_bsdrone_entrypoint_3 = 0x80082FF8;
_bsdronebitten_entrypoint_0 = 0x80083000;
_bsdronebitten_entrypoint_1 = 0x80083008;
_bsdronebitten_entrypoint_2 = 0x80083010;
_bsdronebitten_entrypoint_3 = 0x80083018;
_bsdronebitten_entrypoint_4 = 0x80083020;
_bsdronebitten_entrypoint_5 = 0x80083028;
_bsdronebitten_entrypoint_6 = 0x80083030;
_bsdronebitten_entrypoint_7 = 0x80083038;
_bsdronebitten_entrypoint_8 = 0x80083040;
_bsdronebitten_entrypoint_9 = 0x80083048;
_bsdronebubbled_entrypoint_0 = 0x80083050;
_bsdronebubbled_entrypoint_1 = 0x80083058;
_bsdronebubbled_entrypoint_2 = 0x80083060;
_bsdronebubbled_entrypoint_3 = 0x80083068;
_bsdronebubbled_entrypoint_4 = 0x80083070;
_bsdronebubbled_entrypoint_5 = 0x80083078;
_bsdronebubbled_entrypoint_6 = 0x80083080;
_bsdronebubbled_entrypoint_7 = 0x80083088;
_bsdronefalldie_entrypoint_0 = 0x80083090;
_bsdronefalldie_entrypoint_1 = 0x80083098;
_bsdronefalldie_entrypoint_2 = 0x800830A0;
_bsdronefalldie_entrypoint_3 = 0x800830A8;
_bsdronefired_entrypoint_0 = 0x800830B0;
_bsdronefired_entrypoint_1 = 0x800830B8;
_bsdronefired_entrypoint_2 = 0x800830C0;
_bsdronefired_entrypoint_3 = 0x800830C8;
_bsdronegoto_entrypoint_0 = 0x800830D0;
_bsdronegoto_entrypoint_1 = 0x800830D8;
_bsdronegoto_entrypoint_2 = 0x800830E0;
_bsdronegoto_entrypoint_3 = 0x800830E8;
_bsdronejump_entrypoint_0 = 0x800830F0;
_bsdronejump_entrypoint_1 = 0x800830F8;
_bsdronejump_entrypoint_2 = 0x80083100;
_bsdronejump_entrypoint_3 = 0x80083108;
_bsdronejump_entrypoint_4 = 0x80083110;
_bsdronelook_entrypoint_0 = 0x80083118;
_bsdronelook_entrypoint_1 = 0x80083120;
_bsdronelook_entrypoint_2 = 0x80083128;
_bsdronelook_entrypoint_3 = 0x80083130;
_bsdronelook_entrypoint_4 = 0x80083138;
_bsdroneslide_entrypoint_0 = 0x80083140;
_bsdroneslide_entrypoint_1 = 0x80083148;
_bsdroneslide_entrypoint_2 = 0x80083150;
_bsdronesuckunder_entrypoint_0 = 0x80083158;
_bsdronesuckunder_entrypoint_1 = 0x80083160;
_bsdronesuckunder_entrypoint_2 = 0x80083168;
_bsdronesuckunder_entrypoint_3 = 0x80083170;
_bsdronevanish_entrypoint_0 = 0x80083178;
_bsdronevanish_entrypoint_1 = 0x80083180;
_bsdronevanish_entrypoint_2 = 0x80083188;
_bsdronewaitbabykaz_entrypoint_0 = 0x80083190;
_bsdronewaitbabykaz_entrypoint_1 = 0x80083198;
_bsdronewaitbabykaz_entrypoint_2 = 0x800831A0;
_bsdronewaitbabykaz_entrypoint_3 = 0x800831A8;
_bsdronexform_entrypoint_0 = 0x800831B0;
_bsdronexform_entrypoint_1 = 0x800831B8;
_bsdronexform_entrypoint_2 = 0x800831C0;
_bsdronexform_entrypoint_3 = 0x800831C8;
_bsjig_entrypoint_0 = 0x800831D0;
_bsjig_entrypoint_1 = 0x800831D8;
_bsjig_entrypoint_2 = 0x800831E0;
_bsjig_entrypoint_3 = 0x800831E8;
_bsjig_entrypoint_4 = 0x800831F0;
_bsjig_entrypoint_5 = 0x800831F8;
_bsjig_entrypoint_6 = 0x80083200;
_bsjig_entrypoint_7 = 0x80083208;
_bsjig_entrypoint_8 = 0x80083210;
_bsjig_entrypoint_9 = 0x80083218;
_bsjig_entrypoint_10 = 0x80083220;
_bsjig_entrypoint_11 = 0x80083228;
_bsjump_entrypoint_0 = 0x80083230;
_bsjump_entrypoint_1 = 0x80083238;
_bsjump_entrypoint_2 = 0x80083240;
_bsjump_entrypoint_3 = 0x80083248;
_bsjump_entrypoint_4 = 0x80083250;
_bsjump_entrypoint_5 = 0x80083258;
_bsjump_entrypoint_6 = 0x80083260;
_bsjump_entrypoint_7 = 0x80083268;
_bsjump_entrypoint_8 = 0x80083270;
_bsjump_entrypoint_9 = 0x80083278;
_bsjump_entrypoint_10 = 0x80083280;
_bsjump_entrypoint_11 = 0x80083288;
_bsjump_entrypoint_12 = 0x80083290;
_bsjump_entrypoint_13 = 0x80083298;
_bsjump_entrypoint_14 = 0x800832A0;
_bsjump_entrypoint_15 = 0x800832A8;
_bsjump_entrypoint_16 = 0x800832B0;
_bsjump_entrypoint_17 = 0x800832B8;
_bsjump_entrypoint_18 = 0x800832C0;
_bsjump_entrypoint_19 = 0x800832C8;
_bsjump_entrypoint_20 = 0x800832D0;
_bskaz_entrypoint_0 = 0x800832D8;
_bskaz_entrypoint_1 = 0x800832E0;
_bskaz_entrypoint_2 = 0x800832E8;
_bskaz_entrypoint_3 = 0x800832F0;
_bskaz_entrypoint_4 = 0x800832F8;
_bskazcrouch_entrypoint_0 = 0x80083300;
_bskazcrouch_entrypoint_1 = 0x80083308;
_bskazcrouch_entrypoint_2 = 0x80083310;
_bskazcrouch_entrypoint_3 = 0x80083318;
_bskazcrouch_entrypoint_4 = 0x80083320;
_bskazeggass_entrypoint_0 = 0x80083328;
_bskazeggass_entrypoint_1 = 0x80083330;
_bskazeggass_entrypoint_2 = 0x80083338;
_bskazeggass_entrypoint_3 = 0x80083340;
_bskazflamethrower_entrypoint_0 = 0x80083348;
_bskazflamethrower_entrypoint_1 = 0x80083350;
_bskazflamethrower_entrypoint_2 = 0x80083358;
_bskazflamethrower_entrypoint_3 = 0x80083360;
_bskazflamethrower_entrypoint_4 = 0x80083368;
_bskazfly_entrypoint_0 = 0x80083370;
_bskazfly_entrypoint_1 = 0x80083378;
_bskazfly_entrypoint_2 = 0x80083380;
_bskazfly_entrypoint_3 = 0x80083388;
_bskazfly_entrypoint_4 = 0x80083390;
_bskazfly_entrypoint_5 = 0x80083398;
_bskazfly_entrypoint_6 = 0x800833A0;
_bskazfly_entrypoint_7 = 0x800833A8;
_bskazfly_entrypoint_8 = 0x800833B0;
_bskazfly_entrypoint_9 = 0x800833B8;
_bskazdie_entrypoint_0 = 0x800833C0;
_bskazdie_entrypoint_1 = 0x800833C8;
_bskazdie_entrypoint_2 = 0x800833D0;
_bskazdie_entrypoint_3 = 0x800833D8;
_bskazglide_entrypoint_0 = 0x800833E0;
_bskazglide_entrypoint_1 = 0x800833E8;
_bskazglide_entrypoint_2 = 0x800833F0;
_bskazglide_entrypoint_3 = 0x800833F8;
_bskazglide_entrypoint_4 = 0x80083400;
_bskazhatch_entrypoint_0 = 0x80083408;
_bskazegghead_entrypoint_0 = 0x80083410;
_bskazegghead_entrypoint_1 = 0x80083418;
_bskazegghead_entrypoint_2 = 0x80083420;
_bskazegghead_entrypoint_3 = 0x80083428;
_bskazjump_entrypoint_0 = 0x80083430;
_bskazjump_entrypoint_1 = 0x80083438;
_bskazjump_entrypoint_2 = 0x80083440;
_bskazjump_entrypoint_3 = 0x80083448;
_bskazjump_entrypoint_4 = 0x80083450;
_bskazjump_entrypoint_5 = 0x80083458;
_bskazjump_entrypoint_6 = 0x80083460;
_bskazjump_entrypoint_7 = 0x80083468;
_bskazjump_entrypoint_8 = 0x80083470;
_bskazjump_entrypoint_9 = 0x80083478;
_bskazjump_entrypoint_10 = 0x80083480;
_bskazjump_entrypoint_11 = 0x80083488;
_bskazjump_entrypoint_12 = 0x80083490;
_bskazjump_entrypoint_13 = 0x80083498;
_bskazjump_entrypoint_14 = 0x800834A0;
_bskazjump_entrypoint_15 = 0x800834A8;
_bskazmove_entrypoint_0 = 0x800834B0;
_bskazmove_entrypoint_1 = 0x800834B8;
_bskazmove_entrypoint_2 = 0x800834C0;
_bskazmove_entrypoint_3 = 0x800834C8;
_bskazmove_entrypoint_4 = 0x800834D0;
_bskazmove_entrypoint_5 = 0x800834D8;
_bskazmove_entrypoint_6 = 0x800834E0;
_bskazmove_entrypoint_7 = 0x800834E8;
_bskazmove_entrypoint_8 = 0x800834F0;
_bskazmove_entrypoint_9 = 0x800834F8;
_bskazmove_entrypoint_10 = 0x80083500;
_bskazmove_entrypoint_11 = 0x80083508;
_bskazow_entrypoint_0 = 0x80083510;
_bskazow_entrypoint_1 = 0x80083518;
_bskazpaddle_entrypoint_0 = 0x80083520;
_bskazpaddle_entrypoint_1 = 0x80083528;
_bskazpaddle_entrypoint_2 = 0x80083530;
_bskazpaddle_entrypoint_3 = 0x80083538;
_bskazpaddle_entrypoint_4 = 0x80083540;
_bskazpaddle_entrypoint_5 = 0x80083548;
_bskazshock_entrypoint_0 = 0x80083550;
_bskazshock_entrypoint_1 = 0x80083558;
_bskazshock_entrypoint_2 = 0x80083560;
_bskazshock_entrypoint_3 = 0x80083568;
_bskazshock_entrypoint_4 = 0x80083570;
_bskazshock_entrypoint_5 = 0x80083578;
_bskazshock_entrypoint_6 = 0x80083580;
_bskazshock_entrypoint_7 = 0x80083588;
_bskazshock_entrypoint_8 = 0x80083590;
_bskazshoesspringjump_entrypoint_0 = 0x80083598;
_bskazshoesspringjump_entrypoint_1 = 0x800835A0;
_bskazshoesspringjump_entrypoint_2 = 0x800835A8;
_bskazshoesspringjump_entrypoint_3 = 0x800835B0;
_bskazshoessuckspline_entrypoint_0 = 0x800835B8;
_bskazshoessuckspline_entrypoint_1 = 0x800835C0;
_bskazshoessuckspline_entrypoint_2 = 0x800835C8;
_bskazshoessuckspline_entrypoint_3 = 0x800835D0;
_bskazshoessuckspline_entrypoint_4 = 0x800835D8;
_bskazshoessuckspline_entrypoint_5 = 0x800835E0;
_bskazshoessuckspline_entrypoint_6 = 0x800835E8;
_bskazshoessuckspline_entrypoint_7 = 0x800835F0;
_bskazshoessuckspline_entrypoint_8 = 0x800835F8;
_bskazspring_entrypoint_0 = 0x80083600;
_bskazstill_entrypoint_0 = 0x80083608;
_bskazstill_entrypoint_1 = 0x80083610;
_bskazstill_entrypoint_2 = 0x80083618;
_bskazstill_entrypoint_3 = 0x80083620;
_bskazstill_entrypoint_4 = 0x80083628;
_bskazstill_entrypoint_5 = 0x80083630;
_bskazstill_entrypoint_6 = 0x80083638;
_bskazstill_entrypoint_7 = 0x80083640;
_bskazstill_entrypoint_8 = 0x80083648;
_bskazstill_entrypoint_9 = 0x80083650;
_bskazstill_entrypoint_10 = 0x80083658;
_bskazstilt_entrypoint_0 = 0x80083660;
_bskazstilt_entrypoint_1 = 0x80083668;
_bskazstilt_entrypoint_2 = 0x80083670;
_bskazstilt_entrypoint_3 = 0x80083678;
_bskazstilt_entrypoint_4 = 0x80083680;
_bskazstilt_entrypoint_5 = 0x80083688;
_bskazstilt_entrypoint_6 = 0x80083690;
_bskazstilt_entrypoint_7 = 0x80083698;
_bskazstilt_entrypoint_8 = 0x800836A0;
_bskazstilt_entrypoint_9 = 0x800836A8;
_bskazstilt_entrypoint_10 = 0x800836B0;
_bskazstilt_entrypoint_11 = 0x800836B8;
_bskazstilt_entrypoint_12 = 0x800836C0;
_bskazstilt_entrypoint_13 = 0x800836C8;
_bskazstilt_entrypoint_14 = 0x800836D0;
_bskazstilt_entrypoint_15 = 0x800836D8;
_bskazstilt_entrypoint_16 = 0x800836E0;
_bskazstilt_entrypoint_17 = 0x800836E8;
_bskazstilt_entrypoint_18 = 0x800836F0;
_bskazstilt_entrypoint_19 = 0x800836F8;
_bskazstilt_entrypoint_20 = 0x80083700;
_bskazstilt_entrypoint_21 = 0x80083708;
_bskazstilt_entrypoint_22 = 0x80083710;
_bskazstilt_entrypoint_23 = 0x80083718;
_bskazstilt_entrypoint_24 = 0x80083720;
_bskazstilt_entrypoint_25 = 0x80083728;
_bskazstilt_entrypoint_26 = 0x80083730;
_bskazstilt_entrypoint_27 = 0x80083738;
_bskazstilt_entrypoint_28 = 0x80083740;
_bskazstilt_entrypoint_29 = 0x80083748;
_bskazstilt_entrypoint_30 = 0x80083750;
_bskazstilt_entrypoint_31 = 0x80083758;
_bskaztorpedo_entrypoint_0 = 0x80083760;
_bskaztorpedo_entrypoint_1 = 0x80083768;
_bskaztorpedo_entrypoint_2 = 0x80083770;
_bskaztorpedo_entrypoint_3 = 0x80083778;
_bskaztorpedo_entrypoint_4 = 0x80083780;
_bskaztorpedo_entrypoint_5 = 0x80083788;
_bskaztorpedo_entrypoint_6 = 0x80083790;
_bskaztorpedo_entrypoint_7 = 0x80083798;
_bskazwingwhack_entrypoint_0 = 0x800837A0;
_bskazwingwhack_entrypoint_1 = 0x800837A8;
_bsledge_entrypoint_0 = 0x800837B0;
_bsledge_entrypoint_1 = 0x800837B8;
_bsledge_entrypoint_2 = 0x800837C0;
_bsledge_entrypoint_3 = 0x800837C8;
_bsledge_entrypoint_4 = 0x800837D0;
_bsledge_entrypoint_5 = 0x800837D8;
_bsledge_entrypoint_6 = 0x800837E0;
_bsledge_entrypoint_7 = 0x800837E8;
_bsledge_entrypoint_8 = 0x800837F0;
_bsmum_entrypoint_0 = 0x800837F8;
_bsmum_entrypoint_1 = 0x80083800;
_bsmum_entrypoint_2 = 0x80083808;
_bsmum_entrypoint_3 = 0x80083810;
_bsmum_entrypoint_4 = 0x80083818;
_bsmum_entrypoint_5 = 0x80083820;
_bsmum_entrypoint_6 = 0x80083828;
_bsmum_entrypoint_7 = 0x80083830;
_bsmum_entrypoint_8 = 0x80083838;
_bsmum_entrypoint_9 = 0x80083840;
_bsmum_entrypoint_10 = 0x80083848;
_bsmum_entrypoint_11 = 0x80083850;
_bsmum_entrypoint_12 = 0x80083858;
_bsmum_entrypoint_13 = 0x80083860;
_bsmum_entrypoint_14 = 0x80083868;
_bsmumattack_entrypoint_0 = 0x80083870;
_bsmumcast_entrypoint_0 = 0x80083878;
_bsmumcast_entrypoint_1 = 0x80083880;
_bsmumcast_entrypoint_2 = 0x80083888;
_bsmumcast_entrypoint_3 = 0x80083890;
_bsmumcast_entrypoint_4 = 0x80083898;
_bsmummove_entrypoint_0 = 0x800838A0;
_bsmummove_entrypoint_1 = 0x800838A8;
_bsmummove_entrypoint_2 = 0x800838B0;
_bsmummove_entrypoint_3 = 0x800838B8;
_bsmummove_entrypoint_4 = 0x800838C0;
_bsmumsplat_entrypoint_0 = 0x800838C8;
_bsmumstill_entrypoint_0 = 0x800838D0;
_bsmumstill_entrypoint_1 = 0x800838D8;
_bsmumswim_entrypoint_0 = 0x800838E0;
_bsmumswim_entrypoint_1 = 0x800838E8;
_bsmumswim_entrypoint_2 = 0x800838F0;
_bsmumswim_entrypoint_3 = 0x800838F8;
_bsmumswim_entrypoint_4 = 0x80083900;
_bsmumswim_entrypoint_5 = 0x80083908;
_bsmumswim_entrypoint_6 = 0x80083910;
_bsmumswim_entrypoint_7 = 0x80083918;
_bsow_entrypoint_0 = 0x80083920;
_bsow_entrypoint_1 = 0x80083928;
_bsow_entrypoint_2 = 0x80083930;
_bsow_entrypoint_3 = 0x80083938;
_bsrebound_entrypoint_0 = 0x80083940;
_bsrest_entrypoint_0 = 0x80083948;
_bsrest_entrypoint_1 = 0x80083950;
_bsrest_entrypoint_2 = 0x80083958;
_bsrest_entrypoint_3 = 0x80083960;
_bsrest_entrypoint_4 = 0x80083968;
_bsrest_entrypoint_5 = 0x80083970;
_bsrest_entrypoint_6 = 0x80083978;
_bsrest_entrypoint_7 = 0x80083980;
_bsrest_entrypoint_8 = 0x80083988;
_bsrest_entrypoint_9 = 0x80083990;
_bsrest_entrypoint_10 = 0x80083998;
_bsrest_entrypoint_11 = 0x800839A0;
_bsrest_entrypoint_12 = 0x800839A8;
_bsrest_entrypoint_13 = 0x800839B0;
_bsrest_entrypoint_14 = 0x800839B8;
_bsrest_entrypoint_15 = 0x800839C0;
_bsrest_entrypoint_16 = 0x800839C8;
_bsrest_entrypoint_17 = 0x800839D0;
_bsrest_entrypoint_18 = 0x800839D8;
_bsrest_entrypoint_19 = 0x800839E0;
_bsrest_entrypoint_20 = 0x800839E8;
_bsride_entrypoint_0 = 0x800839F0;
_bsride_entrypoint_1 = 0x800839F8;
_bsride_entrypoint_2 = 0x80083A00;
_bsride_entrypoint_3 = 0x80083A08;
_bssilowait_entrypoint_0 = 0x80083A10;
_bssnowball_entrypoint_0 = 0x80083A18;
_bssnowball_entrypoint_1 = 0x80083A20;
_bssnowball_entrypoint_2 = 0x80083A28;
_bssnowball_entrypoint_3 = 0x80083A30;
_bssnowball_entrypoint_4 = 0x80083A38;
_bssnowball_entrypoint_5 = 0x80083A40;
_bssnowball_entrypoint_6 = 0x80083A48;
_bssnowball_entrypoint_7 = 0x80083A50;
_bssnowball_entrypoint_8 = 0x80083A58;
_bssnowball_entrypoint_9 = 0x80083A60;
_bssnowball_entrypoint_10 = 0x80083A68;
_bssnowball_entrypoint_11 = 0x80083A70;
_bssplat_entrypoint_0 = 0x80083A78;
_bssplat_entrypoint_1 = 0x80083A80;
_bssplitup_entrypoint_0 = 0x80083A88;
_bssplitup_entrypoint_1 = 0x80083A90;
_bssplitup_entrypoint_2 = 0x80083A98;
_bssplitup_entrypoint_3 = 0x80083AA0;
_bssplitup_entrypoint_4 = 0x80083AA8;
_bssplitup_entrypoint_5 = 0x80083AB0;
_bssplitup_entrypoint_6 = 0x80083AB8;
_bssplitup_entrypoint_7 = 0x80083AC0;
_bssplitup_entrypoint_8 = 0x80083AC8;
_bssplitup_entrypoint_9 = 0x80083AD0;
_bssplitup_entrypoint_10 = 0x80083AD8;
_bssplitup_entrypoint_11 = 0x80083AE0;
_bssplitup_entrypoint_12 = 0x80083AE8;
_bssplitup_entrypoint_13 = 0x80083AF0;
_bssplitup_entrypoint_14 = 0x80083AF8;
_bssplitup_entrypoint_15 = 0x80083B00;
_bssplitup_entrypoint_16 = 0x80083B08;
_bssplitup_entrypoint_17 = 0x80083B10;
_bssplitup_entrypoint_18 = 0x80083B18;
_bssplitup_entrypoint_19 = 0x80083B20;
_bsstand_entrypoint_0 = 0x80083B28;
_bsstand_entrypoint_1 = 0x80083B30;
_bsstand_entrypoint_2 = 0x80083B38;
_bsstand_entrypoint_3 = 0x80083B40;
_bsstand_entrypoint_4 = 0x80083B48;
_bsstand_entrypoint_5 = 0x80083B50;
_bsstand_entrypoint_6 = 0x80083B58;
_bsstand_entrypoint_7 = 0x80083B60;
_bsstand_entrypoint_8 = 0x80083B68;
_bsstand_entrypoint_9 = 0x80083B70;
_bsstand_entrypoint_10 = 0x80083B78;
_bsstand_entrypoint_11 = 0x80083B80;
_bsstand_entrypoint_12 = 0x80083B88;
_bsstatue_entrypoint_0 = 0x80083B90;
_bsstatue_entrypoint_1 = 0x80083B98;
_bsstatue_entrypoint_2 = 0x80083BA0;
_bsstatue_entrypoint_3 = 0x80083BA8;
_bsstatue_entrypoint_4 = 0x80083BB0;
_bsstatue_entrypoint_5 = 0x80083BB8;
_bsstatue_entrypoint_6 = 0x80083BC0;
_bsstatue_entrypoint_7 = 0x80083BC8;
_bsstatue_entrypoint_8 = 0x80083BD0;
_bsstatue_entrypoint_9 = 0x80083BD8;
_bsstonehead_entrypoint_0 = 0x80083BE0;
_bsstonehead_entrypoint_1 = 0x80083BE8;
_bsstonehead_entrypoint_2 = 0x80083BF0;
_bsstonehead_entrypoint_3 = 0x80083BF8;
_bsstonehead_entrypoint_4 = 0x80083C00;
_bsstonehead_entrypoint_5 = 0x80083C08;
_bsstonehead_entrypoint_6 = 0x80083C10;
_bsstonehead_entrypoint_7 = 0x80083C18;
_bsstonehead_entrypoint_8 = 0x80083C20;
_bsstonehead_entrypoint_9 = 0x80083C28;
_bsstonehead_entrypoint_10 = 0x80083C30;
_bsstonehead_entrypoint_11 = 0x80083C38;
_bsstonehead_entrypoint_12 = 0x80083C40;
_bsstonehead_entrypoint_13 = 0x80083C48;
_bsstonehead_entrypoint_14 = 0x80083C50;
_bsstonehead_entrypoint_15 = 0x80083C58;
_bsstonehead_entrypoint_16 = 0x80083C60;
_bsstonehead_entrypoint_17 = 0x80083C68;
_bsstonehead_entrypoint_18 = 0x80083C70;
_bsstonehead_entrypoint_19 = 0x80083C78;
_bsstonehead_entrypoint_20 = 0x80083C80;
_bsstonehead_entrypoint_21 = 0x80083C88;
_bsstonehead_entrypoint_22 = 0x80083C90;
_bsstonehead_entrypoint_23 = 0x80083C98;
_bsstonehead_entrypoint_24 = 0x80083CA0;
_bsstonehead_entrypoint_25 = 0x80083CA8;
_bsstonehead_entrypoint_26 = 0x80083CB0;
_bsstonehead_entrypoint_27 = 0x80083CB8;
_bsstonehead_entrypoint_28 = 0x80083CC0;
_bsstonehead_entrypoint_29 = 0x80083CC8;
_bsstonehead_entrypoint_30 = 0x80083CD0;
_bsstonehead_entrypoint_31 = 0x80083CD8;
_bsstonehead_entrypoint_32 = 0x80083CE0;
_bsstonehead_entrypoint_33 = 0x80083CE8;
_bsstonehead_entrypoint_34 = 0x80083CF0;
_bsstonehead_entrypoint_35 = 0x80083CF8;
_bsstonehead_entrypoint_36 = 0x80083D00;
_bsstonehead_entrypoint_37 = 0x80083D08;
_bsstonehead_entrypoint_38 = 0x80083D10;
_bsstonehead_entrypoint_39 = 0x80083D18;
_bsstonehead_entrypoint_40 = 0x80083D20;
_bsstonehead_entrypoint_41 = 0x80083D28;
_bsstonehead_entrypoint_42 = 0x80083D30;
_bsstonehead_entrypoint_43 = 0x80083D38;
_bssub_entrypoint_0 = 0x80083D40;
_bssub_entrypoint_1 = 0x80083D48;
_bssub_entrypoint_2 = 0x80083D50;
_bssub_entrypoint_3 = 0x80083D58;
_bssub_entrypoint_4 = 0x80083D60;
_bssub_entrypoint_5 = 0x80083D68;
_bssub_entrypoint_6 = 0x80083D70;
_bssub_entrypoint_7 = 0x80083D78;
_bsswim_entrypoint_0 = 0x80083D80;
_bsswim_entrypoint_1 = 0x80083D88;
_bsswim_entrypoint_2 = 0x80083D90;
_bsswim_entrypoint_3 = 0x80083D98;
_bstalk_entrypoint_0 = 0x80083DA0;
_bstalk_entrypoint_1 = 0x80083DA8;
_bstalk_entrypoint_2 = 0x80083DB0;
_bstalk_entrypoint_3 = 0x80083DB8;
_bstalk_entrypoint_4 = 0x80083DC0;
_bstaxi_entrypoint_0 = 0x80083DC8;
_bstaxi_entrypoint_1 = 0x80083DD0;
_bstaxi_entrypoint_2 = 0x80083DD8;
_bstaxi_entrypoint_3 = 0x80083DE0;
_bstaxi_entrypoint_4 = 0x80083DE8;
_bstaxi_entrypoint_5 = 0x80083DF0;
_bstaxi_entrypoint_6 = 0x80083DF8;
_bstaxi_entrypoint_7 = 0x80083E00;
_bstaxi_entrypoint_8 = 0x80083E08;
_bstaxi_entrypoint_9 = 0x80083E10;
_bstaxi_entrypoint_10 = 0x80083E18;
_bstaxi_entrypoint_11 = 0x80083E20;
_bstaxi_entrypoint_12 = 0x80083E28;
_bstaxi_entrypoint_13 = 0x80083E30;
_bstaxi_entrypoint_14 = 0x80083E38;
_bstaxi_entrypoint_15 = 0x80083E40;
_bstaxi_entrypoint_16 = 0x80083E48;
_bstaxi_entrypoint_17 = 0x80083E50;
_bstaxi_entrypoint_18 = 0x80083E58;
_bstaxi_entrypoint_19 = 0x80083E60;
_bstaxi_entrypoint_20 = 0x80083E68;
_bstaxi_entrypoint_21 = 0x80083E70;
_bstaxi_entrypoint_22 = 0x80083E78;
_bstaxi_entrypoint_23 = 0x80083E80;
_bstaxi_entrypoint_24 = 0x80083E88;
_bstaxi_entrypoint_25 = 0x80083E90;
_bstaxi_entrypoint_26 = 0x80083E98;
_bstaxi_entrypoint_27 = 0x80083EA0;
_bstaxi_entrypoint_28 = 0x80083EA8;
_bstaxi_entrypoint_29 = 0x80083EB0;
_bstaxi_entrypoint_30 = 0x80083EB8;
_bstaxi_entrypoint_31 = 0x80083EC0;
_bstaxi_entrypoint_32 = 0x80083EC8;
_bstaxi_entrypoint_33 = 0x80083ED0;
_bstaxi_entrypoint_34 = 0x80083ED8;
_bstaxi_entrypoint_35 = 0x80083EE0;
_bsthrow_entrypoint_0 = 0x80083EE8;
_bsthrow_entrypoint_1 = 0x80083EF0;
_bsthrow_entrypoint_2 = 0x80083EF8;
_bsthrow_entrypoint_3 = 0x80083F00;
_bsthrow_entrypoint_4 = 0x80083F08;
_bstimeout_entrypoint_0 = 0x80083F10;
_bstimeout_entrypoint_1 = 0x80083F18;
_bstimeout_entrypoint_2 = 0x80083F20;
_bstimeout_entrypoint_3 = 0x80083F28;
_bstimeout_entrypoint_4 = 0x80083F30;
_bstimeout_entrypoint_5 = 0x80083F38;
_bstimeout_entrypoint_6 = 0x80083F40;
_bstimeout_entrypoint_7 = 0x80083F48;
_bstnt_entrypoint_0 = 0x80083F50;
_bstnt_entrypoint_1 = 0x80083F58;
_bstnt_entrypoint_2 = 0x80083F60;
_bstnt_entrypoint_3 = 0x80083F68;
_bstnt_entrypoint_4 = 0x80083F70;
_bstnt_entrypoint_5 = 0x80083F78;
_bstnt_entrypoint_6 = 0x80083F80;
_bstnt_entrypoint_7 = 0x80083F88;
_bstnt_entrypoint_8 = 0x80083F90;
_bstnt_entrypoint_9 = 0x80083F98;
_bstnt_entrypoint_10 = 0x80083FA0;
_bstnt_entrypoint_11 = 0x80083FA8;
_bstnt_entrypoint_12 = 0x80083FB0;
_bstnt_entrypoint_13 = 0x80083FB8;
_bstnt_entrypoint_14 = 0x80083FC0;
_bstnt_entrypoint_15 = 0x80083FC8;
_bstntswim_entrypoint_0 = 0x80083FD0;
_bstntswim_entrypoint_1 = 0x80083FD8;
_bstntswim_entrypoint_2 = 0x80083FE0;
_bstntswim_entrypoint_3 = 0x80083FE8;
_bstntswim_entrypoint_4 = 0x80083FF0;
_bstrexlarge_entrypoint_0 = 0x80083FF8;
_bstrexlarge_entrypoint_1 = 0x80084000;
_bstrexlarge_entrypoint_2 = 0x80084008;
_bstrexlarge_entrypoint_3 = 0x80084010;
_bstrexlarge_entrypoint_4 = 0x80084018;
_bstrexlarge_entrypoint_5 = 0x80084020;
_bstrexlarge_entrypoint_6 = 0x80084028;
_bstrexlarge_entrypoint_7 = 0x80084030;
_bstrexlarge_entrypoint_8 = 0x80084038;
_bstrexlarge_entrypoint_9 = 0x80084040;
_bstrexlarge_entrypoint_10 = 0x80084048;
_bstrexlarge_entrypoint_11 = 0x80084050;
_bstrexlarge_entrypoint_12 = 0x80084058;
_bstrexlarge_entrypoint_13 = 0x80084060;
_bstrexlarge_entrypoint_14 = 0x80084068;
_bstrexlarge_entrypoint_15 = 0x80084070;
_bstrexsmall_entrypoint_0 = 0x80084078;
_bstrexsmall_entrypoint_1 = 0x80084080;
_bstrexsmall_entrypoint_2 = 0x80084088;
_bstrexsmall_entrypoint_3 = 0x80084090;
_bstrexsmall_entrypoint_4 = 0x80084098;
_bstrexsmall_entrypoint_5 = 0x800840A0;
_bstrexsmall_entrypoint_6 = 0x800840A8;
_bstrexsmall_entrypoint_7 = 0x800840B0;
_bstrexsmall_entrypoint_8 = 0x800840B8;
_bstrexsmall_entrypoint_9 = 0x800840C0;
_bstrexsmall_entrypoint_10 = 0x800840C8;
_bstrexsmall_entrypoint_11 = 0x800840D0;
_bstrexsmall_entrypoint_12 = 0x800840D8;
_bstrexsmall_entrypoint_13 = 0x800840E0;
_bstrexsmall_entrypoint_14 = 0x800840E8;
_bstrexsmall_entrypoint_15 = 0x800840F0;
_bsturn_entrypoint_0 = 0x800840F8;
_bsturn_entrypoint_1 = 0x80084100;
_bsturn_entrypoint_2 = 0x80084108;
_bsturn_entrypoint_3 = 0x80084110;
_bstwirl_entrypoint_0 = 0x80084118;
_bsvan_entrypoint_0 = 0x80084120;
_bsvan_entrypoint_1 = 0x80084128;
_bsvan_entrypoint_2 = 0x80084130;
_bsvan_entrypoint_3 = 0x80084138;
_bsvan_entrypoint_4 = 0x80084140;
_bsvan_entrypoint_5 = 0x80084148;
_bsvan_entrypoint_6 = 0x80084150;
_bsvan_entrypoint_7 = 0x80084158;
_bsvan_entrypoint_8 = 0x80084160;
_bsvan_entrypoint_9 = 0x80084168;
_bsvan_entrypoint_10 = 0x80084170;
_bsvan_entrypoint_11 = 0x80084178;
_bsvan_entrypoint_12 = 0x80084180;
_bsvan_entrypoint_13 = 0x80084188;
_bsvan_entrypoint_14 = 0x80084190;
_bsvan_entrypoint_15 = 0x80084198;
_bsvan_entrypoint_16 = 0x800841A0;
_bsvanswim_entrypoint_0 = 0x800841A8;
_bsvanswim_entrypoint_1 = 0x800841B0;
_bsvanswim_entrypoint_2 = 0x800841B8;
_bsvanswim_entrypoint_3 = 0x800841C0;
_bsvanswim_entrypoint_4 = 0x800841C8;
_bswalk_entrypoint_0 = 0x800841D0;
_bswalk_entrypoint_1 = 0x800841D8;
_bswalk_entrypoint_2 = 0x800841E0;
_bswalk_entrypoint_3 = 0x800841E8;
_bswalk_entrypoint_4 = 0x800841F0;
_bswalk_entrypoint_5 = 0x800841F8;
_bswalk_entrypoint_6 = 0x80084200;
_bswalk_entrypoint_7 = 0x80084208;
_bswalk_entrypoint_8 = 0x80084210;
_bswalk_entrypoint_9 = 0x80084218;
_bswalk_entrypoint_10 = 0x80084220;
_bswalk_entrypoint_11 = 0x80084228;
_bswalk_entrypoint_12 = 0x80084230;
_bswalk_entrypoint_13 = 0x80084238;
_bswalk_entrypoint_14 = 0x80084240;
_bswalk_entrypoint_15 = 0x80084248;
_bswalk_entrypoint_16 = 0x80084250;
_bswalk_entrypoint_17 = 0x80084258;
_bswalk_entrypoint_18 = 0x80084260;
_bswalk_entrypoint_19 = 0x80084268;
_bswalk_entrypoint_20 = 0x80084270;
_bswalk_entrypoint_21 = 0x80084278;
_bswalk_entrypoint_22 = 0x80084280;
_bsfirstp_entrypoint_0 = 0x80084288;
_bsfirstp_entrypoint_1 = 0x80084290;
_bsfirstp_entrypoint_2 = 0x80084298;
_bsfirstp_entrypoint_3 = 0x800842A0;
_bsfirstp_entrypoint_4 = 0x800842A8;
_bsfirstp_entrypoint_5 = 0x800842B0;
_bsfirstp_entrypoint_6 = 0x800842B8;
_bsfirstp_entrypoint_7 = 0x800842C0;
_bsfirstp_entrypoint_8 = 0x800842C8;
_bsfirstp_entrypoint_9 = 0x800842D0;
_bsfirstp_entrypoint_10 = 0x800842D8;
_bsfirstp_entrypoint_11 = 0x800842E0;
_bsfirstp_entrypoint_12 = 0x800842E8;
_bsfirstp_entrypoint_13 = 0x800842F0;
_bsfirstp_entrypoint_14 = 0x800842F8;
_bsfirstp_entrypoint_15 = 0x80084300;
_bsfirstp_entrypoint_16 = 0x80084308;
_bsfirstp_entrypoint_17 = 0x80084310;
_bsfirstp_entrypoint_18 = 0x80084318;
_bsfirstp_entrypoint_19 = 0x80084320;
_bsfirstp_entrypoint_20 = 0x80084328;
_bsfirstp_entrypoint_21 = 0x80084330;
_bsfirstp_entrypoint_22 = 0x80084338;
_bsfirstp_entrypoint_23 = 0x80084340;
_bsfirstp_entrypoint_24 = 0x80084348;
_bsfirstp_entrypoint_25 = 0x80084350;
_bsfirstp_entrypoint_26 = 0x80084358;
_bsfirstp_entrypoint_27 = 0x80084360;
_bsfirstp_entrypoint_28 = 0x80084368;
_bsfirstp_entrypoint_29 = 0x80084370;
_bsfirstp_entrypoint_30 = 0x80084378;
_bsfirstp_entrypoint_31 = 0x80084380;
_bsfirstp_entrypoint_32 = 0x80084388;
_bsfirstp_entrypoint_33 = 0x80084390;
_bsfirstp_entrypoint_34 = 0x80084398;
_bsfirstp_entrypoint_35 = 0x800843A0;
_bsfirstp_entrypoint_36 = 0x800843A8;
_bsfirstp_entrypoint_37 = 0x800843B0;
_bswasher_entrypoint_0 = 0x800843B8;
_bswasher_entrypoint_1 = 0x800843C0;
_bswasher_entrypoint_2 = 0x800843C8;
_bswasher_entrypoint_3 = 0x800843D0;
_bswasher_entrypoint_4 = 0x800843D8;
_bswasher_entrypoint_5 = 0x800843E0;
_bswasher_entrypoint_6 = 0x800843E8;
_bswasher_entrypoint_7 = 0x800843F0;
_bswasher_entrypoint_8 = 0x800843F8;
_bswasher_entrypoint_9 = 0x80084400;
_bswasher_entrypoint_10 = 0x80084408;
_bswasher_entrypoint_11 = 0x80084410;
_baalarm_get_size = 0x80084418;
_baalarm_free = 0x80084420;
_baalarm_new = 0x80084428;
_baalarm_entrypoint_3 = 0x80084430;
_baattach_entrypoint_0 = 0x80084438;
_baattach_entrypoint_1 = 0x80084440;
_baattach_entrypoint_2 = 0x80084448;
_baattach_entrypoint_3 = 0x80084450;
_baattach_entrypoint_4 = 0x80084458;
_baattach_entrypoint_5 = 0x80084460;
_baattach_entrypoint_6 = 0x80084468;
_bababykaz_entrypoint_0 = 0x80084470;
_bababykaz_entrypoint_1 = 0x80084478;