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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
|
gMap_00_00:: @ 834F188
.incbin "baserom.gba", 0x34F188, 0x1C
gMap_00_01:: @ 834F1A4
.incbin "baserom.gba", 0x34F1A4, 0x1C
gMap_00_02:: @ 834F1C0
.incbin "baserom.gba", 0x34F1C0, 0x1C
gMap_00_03:: @ 834F1DC
.incbin "baserom.gba", 0x34F1DC, 0x1C
gMap_00_04:: @ 834F1F8
.incbin "baserom.gba", 0x34F1F8, 0x1C
gMap_01_00:: @ 834F214
.incbin "baserom.gba", 0x34F214, 0x1C
gMap_01_01:: @ 834F230
.incbin "baserom.gba", 0x34F230, 0x1C
gMap_01_02:: @ 834F24C
.incbin "baserom.gba", 0x34F24C, 0x1C
gMap_01_03:: @ 834F268
.incbin "baserom.gba", 0x34F268, 0x1C
gMap_01_04:: @ 834F284
.incbin "baserom.gba", 0x34F284, 0x1C
gMap_01_05:: @ 834F2A0
.incbin "baserom.gba", 0x34F2A0, 0x1C
gMap_01_06:: @ 834F2BC
.incbin "baserom.gba", 0x34F2BC, 0x1C
gMap_01_07:: @ 834F2D8
.incbin "baserom.gba", 0x34F2D8, 0x1C
gMap_01_08:: @ 834F2F4
.incbin "baserom.gba", 0x34F2F4, 0x1C
gMap_01_09:: @ 834F310
.incbin "baserom.gba", 0x34F310, 0x1C
gMap_01_10:: @ 834F32C
.incbin "baserom.gba", 0x34F32C, 0x1C
gMap_01_11:: @ 834F348
.incbin "baserom.gba", 0x34F348, 0x1C
gMap_01_12:: @ 834F364
.incbin "baserom.gba", 0x34F364, 0x1C
gMap_01_13:: @ 834F380
.incbin "baserom.gba", 0x34F380, 0x1C
gMap_01_14:: @ 834F39C
.incbin "baserom.gba", 0x34F39C, 0x1C
gMap_01_15:: @ 834F3B8
.incbin "baserom.gba", 0x34F3B8, 0x1C
gMap_01_16:: @ 834F3D4
.incbin "baserom.gba", 0x34F3D4, 0x1C
gMap_01_17:: @ 834F3F0
.incbin "baserom.gba", 0x34F3F0, 0x1C
gMap_01_18:: @ 834F40C
.incbin "baserom.gba", 0x34F40C, 0x1C
gMap_01_19:: @ 834F428
.incbin "baserom.gba", 0x34F428, 0x1C
gMap_01_20:: @ 834F444
.incbin "baserom.gba", 0x34F444, 0x1C
gMap_01_21:: @ 834F460
.incbin "baserom.gba", 0x34F460, 0x1C
gMap_01_22:: @ 834F47C
.incbin "baserom.gba", 0x34F47C, 0x1C
gMap_01_23:: @ 834F498
.incbin "baserom.gba", 0x34F498, 0x1C
gMap_01_24:: @ 834F4B4
.incbin "baserom.gba", 0x34F4B4, 0x1C
gMap_01_25:: @ 834F4D0
.incbin "baserom.gba", 0x34F4D0, 0x1C
gMap_01_26:: @ 834F4EC
.incbin "baserom.gba", 0x34F4EC, 0x1C
gMap_01_27:: @ 834F508
.incbin "baserom.gba", 0x34F508, 0x1C
gMap_01_28:: @ 834F524
.incbin "baserom.gba", 0x34F524, 0x1C
gMap_01_29:: @ 834F540
.incbin "baserom.gba", 0x34F540, 0x1C
gMap_01_30:: @ 834F55C
.incbin "baserom.gba", 0x34F55C, 0x1C
gMap_01_31:: @ 834F578
.incbin "baserom.gba", 0x34F578, 0x1C
gMap_01_32:: @ 834F594
.incbin "baserom.gba", 0x34F594, 0x1C
gMap_01_33:: @ 834F5B0
.incbin "baserom.gba", 0x34F5B0, 0x1C
gMap_01_34:: @ 834F5CC
.incbin "baserom.gba", 0x34F5CC, 0x1C
gMap_01_35:: @ 834F5E8
.incbin "baserom.gba", 0x34F5E8, 0x1C
gMap_01_36:: @ 834F604
.incbin "baserom.gba", 0x34F604, 0x1C
gMap_01_37:: @ 834F620
.incbin "baserom.gba", 0x34F620, 0x1C
gMap_01_38:: @ 834F63C
.incbin "baserom.gba", 0x34F63C, 0x1C
gMap_01_39:: @ 834F658
.incbin "baserom.gba", 0x34F658, 0x1C
gMap_01_40:: @ 834F674
.incbin "baserom.gba", 0x34F674, 0x1C
gMap_01_41:: @ 834F690
.incbin "baserom.gba", 0x34F690, 0x1C
gMap_01_42:: @ 834F6AC
.incbin "baserom.gba", 0x34F6AC, 0x1C
gMap_01_43:: @ 834F6C8
.incbin "baserom.gba", 0x34F6C8, 0x1C
gMap_01_44:: @ 834F6E4
.incbin "baserom.gba", 0x34F6E4, 0x1C
gMap_01_45:: @ 834F700
.incbin "baserom.gba", 0x34F700, 0x1C
gMap_01_46:: @ 834F71C
.incbin "baserom.gba", 0x34F71C, 0x1C
gMap_01_47:: @ 834F738
.incbin "baserom.gba", 0x34F738, 0x1C
gMap_01_48:: @ 834F754
.incbin "baserom.gba", 0x34F754, 0x1C
gMap_01_49:: @ 834F770
.incbin "baserom.gba", 0x34F770, 0x1C
gMap_01_50:: @ 834F78C
.incbin "baserom.gba", 0x34F78C, 0x1C
gMap_01_51:: @ 834F7A8
.incbin "baserom.gba", 0x34F7A8, 0x1C
gMap_01_52:: @ 834F7C4
.incbin "baserom.gba", 0x34F7C4, 0x1C
gMap_01_53:: @ 834F7E0
.incbin "baserom.gba", 0x34F7E0, 0x1C
gMap_01_54:: @ 834F7FC
.incbin "baserom.gba", 0x34F7FC, 0x1C
gMap_01_55:: @ 834F818
.incbin "baserom.gba", 0x34F818, 0x1C
gMap_01_56:: @ 834F834
.incbin "baserom.gba", 0x34F834, 0x1C
gMap_01_57:: @ 834F850
.incbin "baserom.gba", 0x34F850, 0x1C
gMap_01_58:: @ 834F86C
.incbin "baserom.gba", 0x34F86C, 0x1C
gMap_01_59:: @ 834F888
.incbin "baserom.gba", 0x34F888, 0x1C
gMap_01_60:: @ 834F8A4
.incbin "baserom.gba", 0x34F8A4, 0x1C
gMap_01_61:: @ 834F8C0
.incbin "baserom.gba", 0x34F8C0, 0x1C
gMap_01_62:: @ 834F8DC
.incbin "baserom.gba", 0x34F8DC, 0x1C
gMap_01_63:: @ 834F8F8
.incbin "baserom.gba", 0x34F8F8, 0x1C
gMap_01_64:: @ 834F914
.incbin "baserom.gba", 0x34F914, 0x1C
gMap_01_65:: @ 834F930
.incbin "baserom.gba", 0x34F930, 0x1C
gMap_01_66:: @ 834F94C
.incbin "baserom.gba", 0x34F94C, 0x1C
gMap_01_67:: @ 834F968
.incbin "baserom.gba", 0x34F968, 0x1C
gMap_01_68:: @ 834F984
.incbin "baserom.gba", 0x34F984, 0x1C
gMap_01_69:: @ 834F9A0
.incbin "baserom.gba", 0x34F9A0, 0x1C
gMap_01_70:: @ 834F9BC
.incbin "baserom.gba", 0x34F9BC, 0x1C
gMap_01_71:: @ 834F9D8
.incbin "baserom.gba", 0x34F9D8, 0x1C
gMap_01_72:: @ 834F9F4
.incbin "baserom.gba", 0x34F9F4, 0x1C
gMap_01_73:: @ 834FA10
.incbin "baserom.gba", 0x34FA10, 0x1C
gMap_01_74:: @ 834FA2C
.incbin "baserom.gba", 0x34FA2C, 0x1C
gMap_01_75:: @ 834FA48
.incbin "baserom.gba", 0x34FA48, 0x1C
gMap_01_76:: @ 834FA64
.incbin "baserom.gba", 0x34FA64, 0x1C
gMap_01_77:: @ 834FA80
.incbin "baserom.gba", 0x34FA80, 0x1C
gMap_01_78:: @ 834FA9C
.incbin "baserom.gba", 0x34FA9C, 0x1C
gMap_01_79:: @ 834FAB8
.incbin "baserom.gba", 0x34FAB8, 0x1C
gMap_01_80:: @ 834FAD4
.incbin "baserom.gba", 0x34FAD4, 0x1C
gMap_01_81:: @ 834FAF0
.incbin "baserom.gba", 0x34FAF0, 0x1C
gMap_01_82:: @ 834FB0C
.incbin "baserom.gba", 0x34FB0C, 0x1C
gMap_01_83:: @ 834FB28
.incbin "baserom.gba", 0x34FB28, 0x1C
gMap_01_84:: @ 834FB44
.incbin "baserom.gba", 0x34FB44, 0x1C
gMap_01_85:: @ 834FB60
.incbin "baserom.gba", 0x34FB60, 0x1C
gMap_01_86:: @ 834FB7C
.incbin "baserom.gba", 0x34FB7C, 0x1C
gMap_01_87:: @ 834FB98
.incbin "baserom.gba", 0x34FB98, 0x1C
gMap_01_88:: @ 834FBB4
.incbin "baserom.gba", 0x34FBB4, 0x1C
gMap_01_89:: @ 834FBD0
.incbin "baserom.gba", 0x34FBD0, 0x1C
gMap_01_90:: @ 834FBEC
.incbin "baserom.gba", 0x34FBEC, 0x1C
gMap_01_91:: @ 834FC08
.incbin "baserom.gba", 0x34FC08, 0x1C
gMap_01_92:: @ 834FC24
.incbin "baserom.gba", 0x34FC24, 0x1C
gMap_01_93:: @ 834FC40
.incbin "baserom.gba", 0x34FC40, 0x1C
gMap_01_94:: @ 834FC5C
.incbin "baserom.gba", 0x34FC5C, 0x1C
gMap_01_95:: @ 834FC78
.incbin "baserom.gba", 0x34FC78, 0x1C
gMap_01_96:: @ 834FC94
.incbin "baserom.gba", 0x34FC94, 0x1C
gMap_01_97:: @ 834FCB0
.incbin "baserom.gba", 0x34FCB0, 0x1C
gMap_01_98:: @ 834FCCC
.incbin "baserom.gba", 0x34FCCC, 0x1C
gMap_01_99:: @ 834FCE8
.incbin "baserom.gba", 0x34FCE8, 0x1C
gMap_01_100:: @ 834FD04
.incbin "baserom.gba", 0x34FD04, 0x1C
gMap_01_101:: @ 834FD20
.incbin "baserom.gba", 0x34FD20, 0x1C
gMap_01_102:: @ 834FD3C
.incbin "baserom.gba", 0x34FD3C, 0x1C
gMap_01_103:: @ 834FD58
.incbin "baserom.gba", 0x34FD58, 0x1C
gMap_01_104:: @ 834FD74
.incbin "baserom.gba", 0x34FD74, 0x1C
gMap_01_105:: @ 834FD90
.incbin "baserom.gba", 0x34FD90, 0x1C
gMap_01_106:: @ 834FDAC
.incbin "baserom.gba", 0x34FDAC, 0x1C
gMap_01_107:: @ 834FDC8
.incbin "baserom.gba", 0x34FDC8, 0x1C
gMap_01_108:: @ 834FDE4
.incbin "baserom.gba", 0x34FDE4, 0x1C
gMap_01_109:: @ 834FE00
.incbin "baserom.gba", 0x34FE00, 0x1C
gMap_01_110:: @ 834FE1C
.incbin "baserom.gba", 0x34FE1C, 0x1C
gMap_01_111:: @ 834FE38
.incbin "baserom.gba", 0x34FE38, 0x1C
gMap_01_112:: @ 834FE54
.incbin "baserom.gba", 0x34FE54, 0x1C
gMap_01_113:: @ 834FE70
.incbin "baserom.gba", 0x34FE70, 0x1C
gMap_01_114:: @ 834FE8C
.incbin "baserom.gba", 0x34FE8C, 0x1C
gMap_01_115:: @ 834FEA8
.incbin "baserom.gba", 0x34FEA8, 0x1C
gMap_01_116:: @ 834FEC4
.incbin "baserom.gba", 0x34FEC4, 0x1C
gMap_01_117:: @ 834FEE0
.incbin "baserom.gba", 0x34FEE0, 0x1C
gMap_01_118:: @ 834FEFC
.incbin "baserom.gba", 0x34FEFC, 0x1C
gMap_01_119:: @ 834FF18
.incbin "baserom.gba", 0x34FF18, 0x1C
gMap_01_120:: @ 834FF34
.incbin "baserom.gba", 0x34FF34, 0x1C
gMap_01_121:: @ 834FF50
.incbin "baserom.gba", 0x34FF50, 0x1C
gMap_01_122:: @ 834FF6C
.incbin "baserom.gba", 0x34FF6C, 0x1C
gMap_02_00:: @ 834FF88
.incbin "baserom.gba", 0x34FF88, 0x1C
gMap_02_01:: @ 834FFA4
.incbin "baserom.gba", 0x34FFA4, 0x1C
gMap_02_02:: @ 834FFC0
.incbin "baserom.gba", 0x34FFC0, 0x1C
gMap_02_03:: @ 834FFDC
.incbin "baserom.gba", 0x34FFDC, 0x1C
gMap_02_04:: @ 834FFF8
.incbin "baserom.gba", 0x34FFF8, 0x1C
gMap_02_05:: @ 8350014
.incbin "baserom.gba", 0x350014, 0x1C
gMap_02_06:: @ 8350030
.incbin "baserom.gba", 0x350030, 0x1C
gMap_02_07:: @ 835004C
.incbin "baserom.gba", 0x35004C, 0x1C
gMap_02_08:: @ 8350068
.incbin "baserom.gba", 0x350068, 0x1C
gMap_02_09:: @ 8350084
.incbin "baserom.gba", 0x350084, 0x1C
gMap_02_10:: @ 83500A0
.incbin "baserom.gba", 0x3500A0, 0x1C
gMap_02_11:: @ 83500BC
.incbin "baserom.gba", 0x3500BC, 0x1C
gMap_02_12:: @ 83500D8
.incbin "baserom.gba", 0x3500D8, 0x1C
gMap_02_13:: @ 83500F4
.incbin "baserom.gba", 0x3500F4, 0x1C
gMap_02_14:: @ 8350110
.incbin "baserom.gba", 0x350110, 0x1C
gMap_02_15:: @ 835012C
.incbin "baserom.gba", 0x35012C, 0x1C
gMap_02_16:: @ 8350148
.incbin "baserom.gba", 0x350148, 0x1C
gMap_02_17:: @ 8350164
.incbin "baserom.gba", 0x350164, 0x1C
gMap_02_18:: @ 8350180
.incbin "baserom.gba", 0x350180, 0x1C
gMap_02_19:: @ 835019C
.incbin "baserom.gba", 0x35019C, 0x1C
gMap_02_20:: @ 83501B8
.incbin "baserom.gba", 0x3501B8, 0x1C
gMap_02_21:: @ 83501D4
.incbin "baserom.gba", 0x3501D4, 0x1C
gMap_02_22:: @ 83501F0
.incbin "baserom.gba", 0x3501F0, 0x1C
gMap_02_23:: @ 835020C
.incbin "baserom.gba", 0x35020C, 0x1C
gMap_02_24:: @ 8350228
.incbin "baserom.gba", 0x350228, 0x1C
gMap_02_25:: @ 8350244
.incbin "baserom.gba", 0x350244, 0x1C
gMap_02_26:: @ 8350260
.incbin "baserom.gba", 0x350260, 0x1C
gMap_02_27:: @ 835027C
.incbin "baserom.gba", 0x35027C, 0x1C
gMap_02_28:: @ 8350298
.incbin "baserom.gba", 0x350298, 0x1C
gMap_02_29:: @ 83502B4
.incbin "baserom.gba", 0x3502B4, 0x1C
gMap_02_30:: @ 83502D0
.incbin "baserom.gba", 0x3502D0, 0x1C
gMap_02_31:: @ 83502EC
.incbin "baserom.gba", 0x3502EC, 0x1C
gMap_02_32:: @ 8350308
.incbin "baserom.gba", 0x350308, 0x1C
gMap_02_33:: @ 8350324
.incbin "baserom.gba", 0x350324, 0x1C
gMap_02_34:: @ 8350340
.incbin "baserom.gba", 0x350340, 0x1C
gMap_02_35:: @ 835035C
.incbin "baserom.gba", 0x35035C, 0x1C
gMap_02_36:: @ 8350378
.incbin "baserom.gba", 0x350378, 0x1C
gMap_02_37:: @ 8350394
.incbin "baserom.gba", 0x350394, 0x1C
gMap_02_38:: @ 83503B0
.incbin "baserom.gba", 0x3503B0, 0x1C
gMap_02_39:: @ 83503CC
.incbin "baserom.gba", 0x3503CC, 0x1C
gMap_02_40:: @ 83503E8
.incbin "baserom.gba", 0x3503E8, 0x1C
gMap_02_41:: @ 8350404
.incbin "baserom.gba", 0x350404, 0x1C
gMap_02_42:: @ 8350420
.incbin "baserom.gba", 0x350420, 0x1C
gMap_02_43:: @ 835043C
.incbin "baserom.gba", 0x35043C, 0x1C
gMap_02_44:: @ 8350458
.incbin "baserom.gba", 0x350458, 0x1C
gMap_02_45:: @ 8350474
.incbin "baserom.gba", 0x350474, 0x1C
gMap_02_46:: @ 8350490
.incbin "baserom.gba", 0x350490, 0x1C
gMap_02_47:: @ 83504AC
.incbin "baserom.gba", 0x3504AC, 0x1C
gMap_02_48:: @ 83504C8
.incbin "baserom.gba", 0x3504C8, 0x1C
gMap_02_49:: @ 83504E4
.incbin "baserom.gba", 0x3504E4, 0x1C
gMap_02_50:: @ 8350500
.incbin "baserom.gba", 0x350500, 0x1C
gMap_02_51:: @ 835051C
.incbin "baserom.gba", 0x35051C, 0x1C
gMap_02_52:: @ 8350538
.incbin "baserom.gba", 0x350538, 0x1C
gMap_02_53:: @ 8350554
.incbin "baserom.gba", 0x350554, 0x1C
gMap_02_54:: @ 8350570
.incbin "baserom.gba", 0x350570, 0x1C
gMap_02_55:: @ 835058C
.incbin "baserom.gba", 0x35058C, 0x1C
gMap_02_56:: @ 83505A8
.incbin "baserom.gba", 0x3505A8, 0x1C
gMap_02_57:: @ 83505C4
.incbin "baserom.gba", 0x3505C4, 0x1C
gMap_02_58:: @ 83505E0
.incbin "baserom.gba", 0x3505E0, 0x1C
gMap_02_59:: @ 83505FC
.incbin "baserom.gba", 0x3505FC, 0x1C
gMap_03_00:: @ 8350618
.incbin "baserom.gba", 0x350618, 0x1C
gMap_03_01:: @ 8350634
.incbin "baserom.gba", 0x350634, 0x1C
gMap_03_02:: @ 8350650
.incbin "baserom.gba", 0x350650, 0x1C
gMap_03_03:: @ 835066C
.incbin "baserom.gba", 0x35066C, 0x1C
gMap_03_04:: @ 8350688
.incbin "baserom.gba", 0x350688, 0x1C
gMap_03_05:: @ 83506A4
.incbin "baserom.gba", 0x3506A4, 0x1C
gMap_03_06:: @ 83506C0
.incbin "baserom.gba", 0x3506C0, 0x1C
gMap_03_07:: @ 83506DC
.incbin "baserom.gba", 0x3506DC, 0x1C
gMap_03_08:: @ 83506F8
.incbin "baserom.gba", 0x3506F8, 0x1C
gMap_03_09:: @ 8350714
.incbin "baserom.gba", 0x350714, 0x1C
gMap_03_10:: @ 8350730
.incbin "baserom.gba", 0x350730, 0x1C
gMap_03_11:: @ 835074C
.incbin "baserom.gba", 0x35074C, 0x1C
gMap_03_12:: @ 8350768
.incbin "baserom.gba", 0x350768, 0x1C
gMap_03_13:: @ 8350784
.incbin "baserom.gba", 0x350784, 0x1C
gMap_03_14:: @ 83507A0
.incbin "baserom.gba", 0x3507A0, 0x1C
gMap_03_15:: @ 83507BC
.incbin "baserom.gba", 0x3507BC, 0x1C
gMap_03_16:: @ 83507D8
.incbin "baserom.gba", 0x3507D8, 0x1C
gMap_03_17:: @ 83507F4
.incbin "baserom.gba", 0x3507F4, 0x1C
gMap_03_18:: @ 8350810
.incbin "baserom.gba", 0x350810, 0x1C
gMap_03_19:: @ 835082C
.incbin "baserom.gba", 0x35082C, 0x1C
gMap_03_20:: @ 8350848
.incbin "baserom.gba", 0x350848, 0x1C
gMap_03_21:: @ 8350864
.incbin "baserom.gba", 0x350864, 0x1C
gMap_03_22:: @ 8350880
.incbin "baserom.gba", 0x350880, 0x1C
gMap_03_23:: @ 835089C
.incbin "baserom.gba", 0x35089C, 0x1C
gMap_03_24:: @ 83508B8
.incbin "baserom.gba", 0x3508B8, 0x1C
gMap_03_25:: @ 83508D4
.incbin "baserom.gba", 0x3508D4, 0x1C
gMap_03_26:: @ 83508F0
.incbin "baserom.gba", 0x3508F0, 0x1C
gMap_03_27:: @ 835090C
.incbin "baserom.gba", 0x35090C, 0x1C
gMap_03_28:: @ 8350928
.incbin "baserom.gba", 0x350928, 0x1C
gMap_03_29:: @ 8350944
.incbin "baserom.gba", 0x350944, 0x1C
gMap_03_30:: @ 8350960
.incbin "baserom.gba", 0x350960, 0x1C
gMap_03_31:: @ 835097C
.incbin "baserom.gba", 0x35097C, 0x1C
gMap_03_32:: @ 8350998
.incbin "baserom.gba", 0x350998, 0x1C
gMap_03_33:: @ 83509B4
.incbin "baserom.gba", 0x3509B4, 0x1C
gMap_03_34:: @ 83509D0
.incbin "baserom.gba", 0x3509D0, 0x1C
gMap_03_35:: @ 83509EC
.incbin "baserom.gba", 0x3509EC, 0x1C
gMap_03_36:: @ 8350A08
.incbin "baserom.gba", 0x350A08, 0x1C
gMap_03_37:: @ 8350A24
.incbin "baserom.gba", 0x350A24, 0x1C
gMap_03_38:: @ 8350A40
.incbin "baserom.gba", 0x350A40, 0x1C
gMap_03_39:: @ 8350A5C
.incbin "baserom.gba", 0x350A5C, 0x1C
gMap_03_40:: @ 8350A78
.incbin "baserom.gba", 0x350A78, 0x1C
gMap_03_41:: @ 8350A94
.incbin "baserom.gba", 0x350A94, 0x1C
gMap_03_42:: @ 8350AB0
.incbin "baserom.gba", 0x350AB0, 0x1C
gMap_03_43:: @ 8350ACC
.incbin "baserom.gba", 0x350ACC, 0x1C
gMap_03_44:: @ 8350AE8
.incbin "baserom.gba", 0x350AE8, 0x1C
gMap_03_45:: @ 8350B04
.incbin "baserom.gba", 0x350B04, 0x1C
gMap_03_46:: @ 8350B20
.incbin "baserom.gba", 0x350B20, 0x1C
gMap_03_47:: @ 8350B3C
.incbin "baserom.gba", 0x350B3C, 0x1C
gMap_03_48:: @ 8350B58
.incbin "baserom.gba", 0x350B58, 0x1C
gMap_03_49:: @ 8350B74
.incbin "baserom.gba", 0x350B74, 0x1C
gMap_03_50:: @ 8350B90
.incbin "baserom.gba", 0x350B90, 0x1C
gMap_03_51:: @ 8350BAC
.incbin "baserom.gba", 0x350BAC, 0x1C
gMap_03_52:: @ 8350BC8
.incbin "baserom.gba", 0x350BC8, 0x1C
gMap_03_53:: @ 8350BE4
.incbin "baserom.gba", 0x350BE4, 0x1C
gMap_03_54:: @ 8350C00
.incbin "baserom.gba", 0x350C00, 0x1C
gMap_03_55:: @ 8350C1C
.incbin "baserom.gba", 0x350C1C, 0x1C
gMap_03_56:: @ 8350C38
.incbin "baserom.gba", 0x350C38, 0x1C
gMap_03_57:: @ 8350C54
.incbin "baserom.gba", 0x350C54, 0x1C
gMap_03_58:: @ 8350C70
.incbin "baserom.gba", 0x350C70, 0x1C
gMap_03_59:: @ 8350C8C
.incbin "baserom.gba", 0x350C8C, 0x1C
gMap_03_60:: @ 8350CA8
.incbin "baserom.gba", 0x350CA8, 0x1C
gMap_03_61:: @ 8350CC4
.incbin "baserom.gba", 0x350CC4, 0x1C
gMap_03_62:: @ 8350CE0
.incbin "baserom.gba", 0x350CE0, 0x1C
gMap_03_63:: @ 8350CFC
.incbin "baserom.gba", 0x350CFC, 0x1C
gMap_03_64:: @ 8350D18
.incbin "baserom.gba", 0x350D18, 0x1C
gMap_03_65:: @ 8350D34
.incbin "baserom.gba", 0x350D34, 0x1C
gMap_04_00:: @ 8350D50
.incbin "baserom.gba", 0x350D50, 0x1C
gMap_04_01:: @ 8350D6C
.incbin "baserom.gba", 0x350D6C, 0x1C
gMap_04_02:: @ 8350D88
.incbin "baserom.gba", 0x350D88, 0x1C
gMap_04_03:: @ 8350DA4
.incbin "baserom.gba", 0x350DA4, 0x1C
gMap_05_00:: @ 8350DC0
.incbin "baserom.gba", 0x350DC0, 0x1C
gMap_05_01:: @ 8350DDC
.incbin "baserom.gba", 0x350DDC, 0x1C
gMap_05_02:: @ 8350DF8
.incbin "baserom.gba", 0x350DF8, 0x1C
gMap_05_03:: @ 8350E14
.incbin "baserom.gba", 0x350E14, 0x1C
gMap_05_04:: @ 8350E30
.incbin "baserom.gba", 0x350E30, 0x1C
gMap_05_05:: @ 8350E4C
.incbin "baserom.gba", 0x350E4C, 0x1C
gMap_06_00:: @ 8350E68
.incbin "baserom.gba", 0x350E68, 0x1C
gMap_06_01:: @ 8350E84
.incbin "baserom.gba", 0x350E84, 0x1C
gMap_06_02:: @ 8350EA0
.incbin "baserom.gba", 0x350EA0, 0x1C
gMap_06_03:: @ 8350EBC
.incbin "baserom.gba", 0x350EBC, 0x1C
gMap_06_04:: @ 8350ED8
.incbin "baserom.gba", 0x350ED8, 0x1C
gMap_06_05:: @ 8350EF4
.incbin "baserom.gba", 0x350EF4, 0x1C
gMap_06_06:: @ 8350F10
.incbin "baserom.gba", 0x350F10, 0x1C
gMap_06_07:: @ 8350F2C
.incbin "baserom.gba", 0x350F2C, 0x1C
gMap_07_00:: @ 8350F48
.incbin "baserom.gba", 0x350F48, 0x1C
gMap_07_01:: @ 8350F64
.incbin "baserom.gba", 0x350F64, 0x1C
gMap_07_02:: @ 8350F80
.incbin "baserom.gba", 0x350F80, 0x1C
gMap_07_03:: @ 8350F9C
.incbin "baserom.gba", 0x350F9C, 0x1C
gMap_07_04:: @ 8350FB8
.incbin "baserom.gba", 0x350FB8, 0x1C
gMap_07_05:: @ 8350FD4
.incbin "baserom.gba", 0x350FD4, 0x1C
gMap_07_06:: @ 8350FF0
.incbin "baserom.gba", 0x350FF0, 0x1C
gMap_07_07:: @ 835100C
.incbin "baserom.gba", 0x35100C, 0x1C
gMap_07_08:: @ 8351028
.incbin "baserom.gba", 0x351028, 0x1C
gMap_07_09:: @ 8351044
.incbin "baserom.gba", 0x351044, 0x1C
gMap_08_00:: @ 8351060
.incbin "baserom.gba", 0x351060, 0x1C
gMap_08_01:: @ 835107C
.incbin "baserom.gba", 0x35107C, 0x1C
gMap_08_02:: @ 8351098
.incbin "baserom.gba", 0x351098, 0x1C
gMap_08_03:: @ 83510B4
.incbin "baserom.gba", 0x3510B4, 0x1C
gMap_08_04:: @ 83510D0
.incbin "baserom.gba", 0x3510D0, 0x1C
gMap_08_05:: @ 83510EC
.incbin "baserom.gba", 0x3510EC, 0x1C
gMap_09_00:: @ 8351108
.incbin "baserom.gba", 0x351108, 0x1C
gMap_09_01:: @ 8351124
.incbin "baserom.gba", 0x351124, 0x1C
gMap_09_02:: @ 8351140
.incbin "baserom.gba", 0x351140, 0x1C
gMap_09_03:: @ 835115C
.incbin "baserom.gba", 0x35115C, 0x1C
gMap_09_04:: @ 8351178
.incbin "baserom.gba", 0x351178, 0x1C
gMap_09_05:: @ 8351194
.incbin "baserom.gba", 0x351194, 0x1C
gMap_09_06:: @ 83511B0
.incbin "baserom.gba", 0x3511B0, 0x1C
gMap_09_07:: @ 83511CC
.incbin "baserom.gba", 0x3511CC, 0x1C
gMap_10_00:: @ 83511E8
.incbin "baserom.gba", 0x3511E8, 0x1C
gMap_10_01:: @ 8351204
.incbin "baserom.gba", 0x351204, 0x1C
gMap_10_02:: @ 8351220
.incbin "baserom.gba", 0x351220, 0x1C
gMap_10_03:: @ 835123C
.incbin "baserom.gba", 0x35123C, 0x1C
gMap_10_04:: @ 8351258
.incbin "baserom.gba", 0x351258, 0x1C
gMap_10_05:: @ 8351274
.incbin "baserom.gba", 0x351274, 0x1C
gMap_10_06:: @ 8351290
.incbin "baserom.gba", 0x351290, 0x1C
gMap_10_07:: @ 83512AC
.incbin "baserom.gba", 0x3512AC, 0x1C
gMap_10_08:: @ 83512C8
.incbin "baserom.gba", 0x3512C8, 0x1C
gMap_10_09:: @ 83512E4
.incbin "baserom.gba", 0x3512E4, 0x1C
gMap_10_10:: @ 8351300
.incbin "baserom.gba", 0x351300, 0x1C
gMap_10_11:: @ 835131C
.incbin "baserom.gba", 0x35131C, 0x1C
gMap_10_12:: @ 8351338
.incbin "baserom.gba", 0x351338, 0x1C
gMap_10_13:: @ 8351354
.incbin "baserom.gba", 0x351354, 0x1C
gMap_10_14:: @ 8351370
.incbin "baserom.gba", 0x351370, 0x1C
gMap_10_15:: @ 835138C
.incbin "baserom.gba", 0x35138C, 0x1C
gMap_10_16:: @ 83513A8
.incbin "baserom.gba", 0x3513A8, 0x1C
gMap_10_17:: @ 83513C4
.incbin "baserom.gba", 0x3513C4, 0x1C
gMap_10_18:: @ 83513E0
.incbin "baserom.gba", 0x3513E0, 0x1C
gMap_10_19:: @ 83513FC
.incbin "baserom.gba", 0x3513FC, 0x1C
gMap_11_00:: @ 8351418
.incbin "baserom.gba", 0x351418, 0x1C
gMap_11_01:: @ 8351434
.incbin "baserom.gba", 0x351434, 0x1C
gMap_11_02:: @ 8351450
.incbin "baserom.gba", 0x351450, 0x1C
gMap_11_03:: @ 835146C
.incbin "baserom.gba", 0x35146C, 0x1C
gMap_11_04:: @ 8351488
.incbin "baserom.gba", 0x351488, 0x1C
gMap_11_05:: @ 83514A4
.incbin "baserom.gba", 0x3514A4, 0x1C
gMap_11_06:: @ 83514C0
.incbin "baserom.gba", 0x3514C0, 0x1C
gMap_11_07:: @ 83514DC
.incbin "baserom.gba", 0x3514DC, 0x1C
gMap_11_08:: @ 83514F8
.incbin "baserom.gba", 0x3514F8, 0x1C
gMap_11_09:: @ 8351514
.incbin "baserom.gba", 0x351514, 0x1C
gMap_12_00:: @ 8351530
.incbin "baserom.gba", 0x351530, 0x1C
gMap_12_01:: @ 835154C
.incbin "baserom.gba", 0x35154C, 0x1C
gMap_12_02:: @ 8351568
.incbin "baserom.gba", 0x351568, 0x1C
gMap_12_03:: @ 8351584
.incbin "baserom.gba", 0x351584, 0x1C
gMap_12_04:: @ 83515A0
.incbin "baserom.gba", 0x3515A0, 0x1C
gMap_12_05:: @ 83515BC
.incbin "baserom.gba", 0x3515BC, 0x1C
gMap_12_06:: @ 83515D8
.incbin "baserom.gba", 0x3515D8, 0x1C
gMap_12_07:: @ 83515F4
.incbin "baserom.gba", 0x3515F4, 0x1C
gMap_13_00:: @ 8351610
.incbin "baserom.gba", 0x351610, 0x1C
gMap_13_01:: @ 835162C
.incbin "baserom.gba", 0x35162C, 0x1C
gMap_14_00:: @ 8351648
.incbin "baserom.gba", 0x351648, 0x1C
gMap_14_01:: @ 8351664
.incbin "baserom.gba", 0x351664, 0x1C
gMap_14_02:: @ 8351680
.incbin "baserom.gba", 0x351680, 0x1C
gMap_14_03:: @ 835169C
.incbin "baserom.gba", 0x35169C, 0x1C
gMap_14_04:: @ 83516B8
.incbin "baserom.gba", 0x3516B8, 0x1C
gMap_14_05:: @ 83516D4
.incbin "baserom.gba", 0x3516D4, 0x1C
gMap_14_06:: @ 83516F0
.incbin "baserom.gba", 0x3516F0, 0x1C
gMap_14_07:: @ 835170C
.incbin "baserom.gba", 0x35170C, 0x1C
gMap_14_08:: @ 8351728
.incbin "baserom.gba", 0x351728, 0x1C
gMap_14_09:: @ 8351744
.incbin "baserom.gba", 0x351744, 0x1C
gMap_15_00:: @ 8351760
.incbin "baserom.gba", 0x351760, 0x1C
gMap_15_01:: @ 835177C
.incbin "baserom.gba", 0x35177C, 0x1C
gMap_15_02:: @ 8351798
.incbin "baserom.gba", 0x351798, 0x1C
gMap_15_03:: @ 83517B4
.incbin "baserom.gba", 0x3517B4, 0x1C
gMap_16_00:: @ 83517D0
.incbin "baserom.gba", 0x3517D0, 0x1C
gMap_16_01:: @ 83517EC
.incbin "baserom.gba", 0x3517EC, 0x1C
gMap_17_00:: @ 8351808
.incbin "baserom.gba", 0x351808, 0x1C
gMap_17_01:: @ 8351824
.incbin "baserom.gba", 0x351824, 0x1C
gMap_18_00:: @ 8351840
.incbin "baserom.gba", 0x351840, 0x1C
gMap_18_01:: @ 835185C
.incbin "baserom.gba", 0x35185C, 0x1C
gMap_19_00:: @ 8351878
.incbin "baserom.gba", 0x351878, 0x1C
gMap_20_00:: @ 8351894
.incbin "baserom.gba", 0x351894, 0x1C
gMap_21_00:: @ 83518B0
.incbin "baserom.gba", 0x3518B0, 0x1C
gMap_21_01:: @ 83518CC
.incbin "baserom.gba", 0x3518CC, 0x1C
gMap_22_00:: @ 83518E8
.incbin "baserom.gba", 0x3518E8, 0x1C
gMap_22_01:: @ 8351904
.incbin "baserom.gba", 0x351904, 0x1C
gMap_23_00:: @ 8351920
.incbin "baserom.gba", 0x351920, 0x1C
gMap_23_01:: @ 835193C
.incbin "baserom.gba", 0x35193C, 0x1C
gMap_23_02:: @ 8351958
.incbin "baserom.gba", 0x351958, 0x1C
gMap_24_00:: @ 8351974
.incbin "baserom.gba", 0x351974, 0x1C
gMap_24_01:: @ 8351990
.incbin "baserom.gba", 0x351990, 0x1C
gMap_25_00:: @ 83519AC
.incbin "baserom.gba", 0x3519AC, 0x1C
gMap_25_01:: @ 83519C8
.incbin "baserom.gba", 0x3519C8, 0x1C
gMap_25_02:: @ 83519E4
.incbin "baserom.gba", 0x3519E4, 0x1C
gMap_26_00:: @ 8351A00
.incbin "baserom.gba", 0x351A00, 0x1C
gMap_26_01:: @ 8351A1C
.incbin "baserom.gba", 0x351A1C, 0x1C
gMap_27_00:: @ 8351A38
.incbin "baserom.gba", 0x351A38, 0x1C
gMap_28_00:: @ 8351A54
.incbin "baserom.gba", 0x351A54, 0x1C
gMap_29_00:: @ 8351A70
.incbin "baserom.gba", 0x351A70, 0x1C
gMap_30_00:: @ 8351A8C
.incbin "baserom.gba", 0x351A8C, 0x1C
gMap_31_00:: @ 8351AA8
.incbin "baserom.gba", 0x351AA8, 0x1C
gMap_31_01:: @ 8351AC4
.incbin "baserom.gba", 0x351AC4, 0x1C
gMap_31_02:: @ 8351AE0
.incbin "baserom.gba", 0x351AE0, 0x1C
gMap_31_03:: @ 8351AFC
.incbin "baserom.gba", 0x351AFC, 0x1C
gMap_31_04:: @ 8351B18
.incbin "baserom.gba", 0x351B18, 0x1C
gMap_31_05:: @ 8351B34
.incbin "baserom.gba", 0x351B34, 0x1C
gMap_31_06:: @ 8351B50
.incbin "baserom.gba", 0x351B50, 0x1C
gMap_32_00:: @ 8351B6C
.incbin "baserom.gba", 0x351B6C, 0x1C
gMap_32_01:: @ 8351B88
.incbin "baserom.gba", 0x351B88, 0x1C
gMap_32_02:: @ 8351BA4
.incbin "baserom.gba", 0x351BA4, 0x1C
gMap_32_03:: @ 8351BC0
.incbin "baserom.gba", 0x351BC0, 0x1C
gMap_32_04:: @ 8351BDC
.incbin "baserom.gba", 0x351BDC, 0x1C
gMap_33_00:: @ 8351BF8
.incbin "baserom.gba", 0x351BF8, 0x1C
gMap_33_01:: @ 8351C14
.incbin "baserom.gba", 0x351C14, 0x1C
gMap_33_02:: @ 8351C30
.incbin "baserom.gba", 0x351C30, 0x1C
gMap_33_03:: @ 8351C4C
.incbin "baserom.gba", 0x351C4C, 0x1C
gMap_33_04:: @ 8351C68
.incbin "baserom.gba", 0x351C68, 0x1C
gMap_34_00:: @ 8351C84
.incbin "baserom.gba", 0x351C84, 0x1C
gMap_34_01:: @ 8351CA0
.incbin "baserom.gba", 0x351CA0, 0x1C
gMap_34_02:: @ 8351CBC
.incbin "baserom.gba", 0x351CBC, 0x1C
gMap_34_03:: @ 8351CD8
.incbin "baserom.gba", 0x351CD8, 0x1C
gMap_34_04:: @ 8351CF4
.incbin "baserom.gba", 0x351CF4, 0x1C
gMap_34_05:: @ 8351D10
.incbin "baserom.gba", 0x351D10, 0x1C
gMap_34_06:: @ 8351D2C
.incbin "baserom.gba", 0x351D2C, 0x1C
gMap_34_07:: @ 8351D48
.incbin "baserom.gba", 0x351D48, 0x1C
gMap_35_00:: @ 8351D64
.incbin "baserom.gba", 0x351D64, 0x1C
gMap_35_01:: @ 8351D80
.incbin "baserom.gba", 0x351D80, 0x1C
gMap_35_02:: @ 8351D9C
.incbin "baserom.gba", 0x351D9C, 0x1C
gMap_35_03:: @ 8351DB8
.incbin "baserom.gba", 0x351DB8, 0x1C
gMap_35_04:: @ 8351DD4
.incbin "baserom.gba", 0x351DD4, 0x1C
gMap_35_05:: @ 8351DF0
.incbin "baserom.gba", 0x351DF0, 0x1C
gMap_35_06:: @ 8351E0C
.incbin "baserom.gba", 0x351E0C, 0x1C
gMap_35_07:: @ 8351E28
.incbin "baserom.gba", 0x351E28, 0x1C
gMap_36_00:: @ 8351E44
.incbin "baserom.gba", 0x351E44, 0x1C
gMap_36_01:: @ 8351E60
.incbin "baserom.gba", 0x351E60, 0x1C
gMap_36_02:: @ 8351E7C
.incbin "baserom.gba", 0x351E7C, 0x1C
gMap_36_03:: @ 8351E98
.incbin "baserom.gba", 0x351E98, 0x1C
gMap_36_04:: @ 8351EB4
.incbin "baserom.gba", 0x351EB4, 0x1C
gMap_37_00:: @ 8351ED0
.incbin "baserom.gba", 0x351ED0, 0x1C
gMap_37_01:: @ 8351EEC
.incbin "baserom.gba", 0x351EEC, 0x1C
gMap_37_02:: @ 8351F08
.incbin "baserom.gba", 0x351F08, 0x1C
gMap_37_03:: @ 8351F24
.incbin "baserom.gba", 0x351F24, 0x1C
gMap_37_04:: @ 8351F40
.incbin "baserom.gba", 0x351F40, 0x1C
gMap_38_00:: @ 8351F5C
.incbin "baserom.gba", 0x351F5C, 0x1C
gMap_39_00:: @ 8351F78
.incbin "baserom.gba", 0x351F78, 0x1C
gMap_40_00:: @ 8351F94
.incbin "baserom.gba", 0x351F94, 0x1C
gMap_41_00:: @ 8351FB0
.incbin "baserom.gba", 0x351FB0, 0x1C
gMap_41_01:: @ 8351FCC
.incbin "baserom.gba", 0x351FCC, 0x1C
gMap_42_00:: @ 8351FE8
.incbin "baserom.gba", 0x351FE8, 0x1C
gMapGroup_00:: @ 8352004
.4byte gMap_00_00
.4byte gMap_00_01
.4byte gMap_00_02
.4byte gMap_00_03
.4byte gMap_00_04
gMapGroup_01:: @ 8352018
.4byte gMap_01_00
.4byte gMap_01_01
.4byte gMap_01_02
.4byte gMap_01_03
.4byte gMap_01_04
.4byte gMap_01_05
.4byte gMap_01_06
.4byte gMap_01_07
.4byte gMap_01_08
.4byte gMap_01_09
.4byte gMap_01_10
.4byte gMap_01_11
.4byte gMap_01_12
.4byte gMap_01_13
.4byte gMap_01_14
.4byte gMap_01_15
.4byte gMap_01_16
.4byte gMap_01_17
.4byte gMap_01_18
.4byte gMap_01_19
.4byte gMap_01_20
.4byte gMap_01_21
.4byte gMap_01_22
.4byte gMap_01_23
.4byte gMap_01_24
.4byte gMap_01_25
.4byte gMap_01_26
.4byte gMap_01_27
.4byte gMap_01_28
.4byte gMap_01_29
.4byte gMap_01_30
.4byte gMap_01_31
.4byte gMap_01_32
.4byte gMap_01_33
.4byte gMap_01_34
.4byte gMap_01_35
.4byte gMap_01_36
.4byte gMap_01_37
.4byte gMap_01_38
.4byte gMap_01_39
.4byte gMap_01_40
.4byte gMap_01_41
.4byte gMap_01_42
.4byte gMap_01_43
.4byte gMap_01_44
.4byte gMap_01_45
.4byte gMap_01_46
.4byte gMap_01_47
.4byte gMap_01_48
.4byte gMap_01_49
.4byte gMap_01_50
.4byte gMap_01_51
.4byte gMap_01_52
.4byte gMap_01_53
.4byte gMap_01_54
.4byte gMap_01_55
.4byte gMap_01_56
.4byte gMap_01_57
.4byte gMap_01_58
.4byte gMap_01_59
.4byte gMap_01_60
.4byte gMap_01_61
.4byte gMap_01_62
.4byte gMap_01_63
.4byte gMap_01_64
.4byte gMap_01_65
.4byte gMap_01_66
.4byte gMap_01_67
.4byte gMap_01_68
.4byte gMap_01_69
.4byte gMap_01_70
.4byte gMap_01_71
.4byte gMap_01_72
.4byte gMap_01_73
.4byte gMap_01_74
.4byte gMap_01_75
.4byte gMap_01_76
.4byte gMap_01_77
.4byte gMap_01_78
.4byte gMap_01_79
.4byte gMap_01_80
.4byte gMap_01_81
.4byte gMap_01_82
.4byte gMap_01_83
.4byte gMap_01_84
.4byte gMap_01_85
.4byte gMap_01_86
.4byte gMap_01_87
.4byte gMap_01_88
.4byte gMap_01_89
.4byte gMap_01_90
.4byte gMap_01_91
.4byte gMap_01_92
.4byte gMap_01_93
.4byte gMap_01_94
.4byte gMap_01_95
.4byte gMap_01_96
.4byte gMap_01_97
.4byte gMap_01_98
.4byte gMap_01_99
.4byte gMap_01_100
.4byte gMap_01_101
.4byte gMap_01_102
.4byte gMap_01_103
.4byte gMap_01_104
.4byte gMap_01_105
.4byte gMap_01_106
.4byte gMap_01_107
.4byte gMap_01_108
.4byte gMap_01_109
.4byte gMap_01_110
.4byte gMap_01_111
.4byte gMap_01_112
.4byte gMap_01_113
.4byte gMap_01_114
.4byte gMap_01_115
.4byte gMap_01_116
.4byte gMap_01_117
.4byte gMap_01_118
.4byte gMap_01_119
.4byte gMap_01_120
.4byte gMap_01_121
.4byte gMap_01_122
gMapGroup_02:: @ 8352204
.4byte gMap_02_00
.4byte gMap_02_01
.4byte gMap_02_02
.4byte gMap_02_03
.4byte gMap_02_04
.4byte gMap_02_05
.4byte gMap_02_06
.4byte gMap_02_07
.4byte gMap_02_08
.4byte gMap_02_09
.4byte gMap_02_10
.4byte gMap_02_11
.4byte gMap_02_12
.4byte gMap_02_13
.4byte gMap_02_14
.4byte gMap_02_15
.4byte gMap_02_16
.4byte gMap_02_17
.4byte gMap_02_18
.4byte gMap_02_19
.4byte gMap_02_20
.4byte gMap_02_21
.4byte gMap_02_22
.4byte gMap_02_23
.4byte gMap_02_24
.4byte gMap_02_25
.4byte gMap_02_26
.4byte gMap_02_27
.4byte gMap_02_28
.4byte gMap_02_29
.4byte gMap_02_30
.4byte gMap_02_31
.4byte gMap_02_32
.4byte gMap_02_33
.4byte gMap_02_34
.4byte gMap_02_35
.4byte gMap_02_36
.4byte gMap_02_37
.4byte gMap_02_38
.4byte gMap_02_39
.4byte gMap_02_40
.4byte gMap_02_41
.4byte gMap_02_42
.4byte gMap_02_43
.4byte gMap_02_44
.4byte gMap_02_45
.4byte gMap_02_46
.4byte gMap_02_47
.4byte gMap_02_48
.4byte gMap_02_49
.4byte gMap_02_50
.4byte gMap_02_51
.4byte gMap_02_52
.4byte gMap_02_53
.4byte gMap_02_54
.4byte gMap_02_55
.4byte gMap_02_56
.4byte gMap_02_57
.4byte gMap_02_58
.4byte gMap_02_59
gMapGroup_03:: @ 83522F4
.4byte gMap_03_00
.4byte gMap_03_01
.4byte gMap_03_02
.4byte gMap_03_03
.4byte gMap_03_04
.4byte gMap_03_05
.4byte gMap_03_06
.4byte gMap_03_07
.4byte gMap_03_08
.4byte gMap_03_09
.4byte gMap_03_10
.4byte gMap_03_11
.4byte gMap_03_12
.4byte gMap_03_13
.4byte gMap_03_14
.4byte gMap_03_15
.4byte gMap_03_16
.4byte gMap_03_17
.4byte gMap_03_18
.4byte gMap_03_19
.4byte gMap_03_20
.4byte gMap_03_21
.4byte gMap_03_22
.4byte gMap_03_23
.4byte gMap_03_24
.4byte gMap_03_25
.4byte gMap_03_26
.4byte gMap_03_27
.4byte gMap_03_28
.4byte gMap_03_29
.4byte gMap_03_30
.4byte gMap_03_31
.4byte gMap_03_32
.4byte gMap_03_33
.4byte gMap_03_34
.4byte gMap_03_35
.4byte gMap_03_36
.4byte gMap_03_37
.4byte gMap_03_38
.4byte gMap_03_39
.4byte gMap_03_40
.4byte gMap_03_41
.4byte gMap_03_42
.4byte gMap_03_43
.4byte gMap_03_44
.4byte gMap_03_45
.4byte gMap_03_46
.4byte gMap_03_47
.4byte gMap_03_48
.4byte gMap_03_49
.4byte gMap_03_50
.4byte gMap_03_51
.4byte gMap_03_52
.4byte gMap_03_53
.4byte gMap_03_54
.4byte gMap_03_55
.4byte gMap_03_56
.4byte gMap_03_57
.4byte gMap_03_58
.4byte gMap_03_59
.4byte gMap_03_60
.4byte gMap_03_61
.4byte gMap_03_62
.4byte gMap_03_63
.4byte gMap_03_64
.4byte gMap_03_65
gMapGroup_04:: @ 83523FC
.4byte gMap_04_00
.4byte gMap_04_01
.4byte gMap_04_02
.4byte gMap_04_03
gMapGroup_05:: @ 835240C
.4byte gMap_05_00
.4byte gMap_05_01
.4byte gMap_05_02
.4byte gMap_05_03
.4byte gMap_05_04
.4byte gMap_05_05
gMapGroup_06:: @ 8352424
.4byte gMap_06_00
.4byte gMap_06_01
.4byte gMap_06_02
.4byte gMap_06_03
.4byte gMap_06_04
.4byte gMap_06_05
.4byte gMap_06_06
.4byte gMap_06_07
gMapGroup_07:: @ 8352444
.4byte gMap_07_00
.4byte gMap_07_01
.4byte gMap_07_02
.4byte gMap_07_03
.4byte gMap_07_04
.4byte gMap_07_05
.4byte gMap_07_06
.4byte gMap_07_07
.4byte gMap_07_08
.4byte gMap_07_09
gMapGroup_08:: @ 835246C
.4byte gMap_08_00
.4byte gMap_08_01
.4byte gMap_08_02
.4byte gMap_08_03
.4byte gMap_08_04
.4byte gMap_08_05
gMapGroup_09:: @ 8352484
.4byte gMap_09_00
.4byte gMap_09_01
.4byte gMap_09_02
.4byte gMap_09_03
.4byte gMap_09_04
.4byte gMap_09_05
.4byte gMap_09_06
.4byte gMap_09_07
gMapGroup_10:: @ 83524A4
.4byte gMap_10_00
.4byte gMap_10_01
.4byte gMap_10_02
.4byte gMap_10_03
.4byte gMap_10_04
.4byte gMap_10_05
.4byte gMap_10_06
.4byte gMap_10_07
.4byte gMap_10_08
.4byte gMap_10_09
.4byte gMap_10_10
.4byte gMap_10_11
.4byte gMap_10_12
.4byte gMap_10_13
.4byte gMap_10_14
.4byte gMap_10_15
.4byte gMap_10_16
.4byte gMap_10_17
.4byte gMap_10_18
.4byte gMap_10_19
gMapGroup_11:: @ 83524F4
.4byte gMap_11_00
.4byte gMap_11_01
.4byte gMap_11_02
.4byte gMap_11_03
.4byte gMap_11_04
.4byte gMap_11_05
.4byte gMap_11_06
.4byte gMap_11_07
.4byte gMap_11_08
.4byte gMap_11_09
gMapGroup_12:: @ 835251C
.4byte gMap_12_00
.4byte gMap_12_01
.4byte gMap_12_02
.4byte gMap_12_03
.4byte gMap_12_04
.4byte gMap_12_05
.4byte gMap_12_06
.4byte gMap_12_07
gMapGroup_13:: @ 835253C
.4byte gMap_13_00
.4byte gMap_13_01
gMapGroup_14:: @ 8352544
.4byte gMap_14_00
.4byte gMap_14_01
.4byte gMap_14_02
.4byte gMap_14_03
.4byte gMap_14_04
.4byte gMap_14_05
.4byte gMap_14_06
.4byte gMap_14_07
.4byte gMap_14_08
.4byte gMap_14_09
gMapGroup_15:: @ 835256C
.4byte gMap_15_00
.4byte gMap_15_01
.4byte gMap_15_02
.4byte gMap_15_03
gMapGroup_16:: @ 835257C
.4byte gMap_16_00
.4byte gMap_16_01
gMapGroup_17:: @ 8352584
.4byte gMap_17_00
.4byte gMap_17_01
gMapGroup_18:: @ 835258C
.4byte gMap_18_00
.4byte gMap_18_01
gMapGroup_19:: @ 8352594
.4byte gMap_19_00
gMapGroup_20:: @ 8352598
.4byte gMap_20_00
gMapGroup_21:: @ 835259C
.4byte gMap_21_00
.4byte gMap_21_01
gMapGroup_22:: @ 83525A4
.4byte gMap_22_00
.4byte gMap_22_01
gMapGroup_23:: @ 83525AC
.4byte gMap_23_00
.4byte gMap_23_01
.4byte gMap_23_02
gMapGroup_24:: @ 83525B8
.4byte gMap_24_00
.4byte gMap_24_01
gMapGroup_25:: @ 83525C0
.4byte gMap_25_00
.4byte gMap_25_01
.4byte gMap_25_02
gMapGroup_26:: @ 83525CC
.4byte gMap_26_00
.4byte gMap_26_01
gMapGroup_27:: @ 83525D4
.4byte gMap_27_00
gMapGroup_28:: @ 83525D8
.4byte gMap_28_00
gMapGroup_29:: @ 83525DC
.4byte gMap_29_00
gMapGroup_30:: @ 83525E0
.4byte gMap_30_00
gMapGroup_31:: @ 83525E4
.4byte gMap_31_00
.4byte gMap_31_01
.4byte gMap_31_02
.4byte gMap_31_03
.4byte gMap_31_04
.4byte gMap_31_05
.4byte gMap_31_06
gMapGroup_32:: @ 8352600
.4byte gMap_32_00
.4byte gMap_32_01
.4byte gMap_32_02
.4byte gMap_32_03
.4byte gMap_32_04
gMapGroup_33:: @ 8352614
.4byte gMap_33_00
.4byte gMap_33_01
.4byte gMap_33_02
.4byte gMap_33_03
.4byte gMap_33_04
gMapGroup_34:: @ 8352628
.4byte gMap_34_00
.4byte gMap_34_01
.4byte gMap_34_02
.4byte gMap_34_03
.4byte gMap_34_04
.4byte gMap_34_05
.4byte gMap_34_06
.4byte gMap_34_07
gMapGroup_35:: @ 8352648
.4byte gMap_35_00
.4byte gMap_35_01
.4byte gMap_35_02
.4byte gMap_35_03
.4byte gMap_35_04
.4byte gMap_35_05
.4byte gMap_35_06
.4byte gMap_35_07
gMapGroup_36:: @ 8352668
.4byte gMap_36_00
.4byte gMap_36_01
.4byte gMap_36_02
.4byte gMap_36_03
.4byte gMap_36_04
gMapGroup_37:: @ 835267C
.4byte gMap_37_00
.4byte gMap_37_01
.4byte gMap_37_02
.4byte gMap_37_03
.4byte gMap_37_04
gMapGroup_38:: @ 8352690
.4byte gMap_38_00
gMapGroup_39:: @ 8352694
.4byte gMap_39_00
gMapGroup_40:: @ 8352698
.4byte gMap_40_00
gMapGroup_41:: @ 835269C
.4byte gMap_41_00
.4byte gMap_41_01
gMapGroup_42:: @ 83526A4
.4byte gMap_42_00
gMapGroups:: @ 0x83526A8
.4byte gMapGroup_00
.4byte gMapGroup_01
.4byte gMapGroup_02
.4byte gMapGroup_03
.4byte gMapGroup_04
.4byte gMapGroup_05
.4byte gMapGroup_06
.4byte gMapGroup_07
.4byte gMapGroup_08
.4byte gMapGroup_09
.4byte gMapGroup_10
.4byte gMapGroup_11
.4byte gMapGroup_12
.4byte gMapGroup_13
.4byte gMapGroup_14
.4byte gMapGroup_15
.4byte gMapGroup_16
.4byte gMapGroup_17
.4byte gMapGroup_18
.4byte gMapGroup_19
.4byte gMapGroup_20
.4byte gMapGroup_21
.4byte gMapGroup_22
.4byte gMapGroup_23
.4byte gMapGroup_24
.4byte gMapGroup_25
.4byte gMapGroup_26
.4byte gMapGroup_27
.4byte gMapGroup_28
.4byte gMapGroup_29
.4byte gMapGroup_30
.4byte gMapGroup_31
.4byte gMapGroup_32
.4byte gMapGroup_33
.4byte gMapGroup_34
.4byte gMapGroup_35
.4byte gMapGroup_36
.4byte gMapGroup_37
.4byte gMapGroup_38
.4byte gMapGroup_39
.4byte gMapGroup_40
.4byte gMapGroup_41
.4byte gMapGroup_42
|