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
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
|
.text
; NARC header
.ascii "NARC"
.short 0xFFFE ; byte order
.short 0x0100 ; version
.word 0x00005A44 ; size
.short 0x0010 ; chunk size
.short 3 ; number following chunks
; BTAF header
.ascii "BTAF"
.word 0x00003DCC ; chunk size
.short 1976 ; number of files
.balign 4
.word 0x00000000, 0x00000001
.word 0x00000004, 0x00000005
.word 0x00000008, 0x00000009
.word 0x0000000C, 0x0000000D
.word 0x00000010, 0x00000011
.word 0x00000014, 0x00000015
.word 0x00000018, 0x00000019
.word 0x0000001C, 0x0000001D
.word 0x00000020, 0x00000021
.word 0x00000024, 0x00000025
.word 0x00000028, 0x00000029
.word 0x0000002C, 0x0000002D
.word 0x00000030, 0x00000031
.word 0x00000034, 0x00000035
.word 0x00000038, 0x00000039
.word 0x0000003C, 0x0000003D
.word 0x00000040, 0x00000041
.word 0x00000044, 0x00000045
.word 0x00000048, 0x00000049
.word 0x0000004C, 0x0000004D
.word 0x00000050, 0x00000051
.word 0x00000054, 0x00000055
.word 0x00000058, 0x00000059
.word 0x0000005C, 0x0000005D
.word 0x00000060, 0x00000061
.word 0x00000064, 0x00000065
.word 0x00000068, 0x00000069
.word 0x0000006C, 0x0000006D
.word 0x00000070, 0x00000071
.word 0x00000074, 0x00000075
.word 0x00000078, 0x00000079
.word 0x0000007C, 0x0000007D
.word 0x00000080, 0x00000081
.word 0x00000084, 0x00000085
.word 0x00000088, 0x00000089
.word 0x0000008C, 0x0000008D
.word 0x00000090, 0x00000091
.word 0x00000094, 0x00000095
.word 0x00000098, 0x00000099
.word 0x0000009C, 0x0000009D
.word 0x000000A0, 0x000000A1
.word 0x000000A4, 0x000000A5
.word 0x000000A8, 0x000000A9
.word 0x000000AC, 0x000000AD
.word 0x000000B0, 0x000000B1
.word 0x000000B4, 0x000000B5
.word 0x000000B8, 0x000000B9
.word 0x000000BC, 0x000000BD
.word 0x000000C0, 0x000000C1
.word 0x000000C4, 0x000000C5
.word 0x000000C8, 0x000000C9
.word 0x000000CC, 0x000000CD
.word 0x000000D0, 0x000000D1
.word 0x000000D4, 0x000000D5
.word 0x000000D8, 0x000000D9
.word 0x000000DC, 0x000000DD
.word 0x000000E0, 0x000000E1
.word 0x000000E4, 0x000000E5
.word 0x000000E8, 0x000000E9
.word 0x000000EC, 0x000000ED
.word 0x000000F0, 0x000000F1
.word 0x000000F4, 0x000000F5
.word 0x000000F8, 0x000000F9
.word 0x000000FC, 0x000000FD
.word 0x00000100, 0x00000101
.word 0x00000104, 0x00000105
.word 0x00000108, 0x00000109
.word 0x0000010C, 0x0000010D
.word 0x00000110, 0x00000111
.word 0x00000114, 0x00000115
.word 0x00000118, 0x00000119
.word 0x0000011C, 0x0000011D
.word 0x00000120, 0x00000121
.word 0x00000124, 0x00000125
.word 0x00000128, 0x00000129
.word 0x0000012C, 0x0000012D
.word 0x00000130, 0x00000131
.word 0x00000134, 0x00000135
.word 0x00000138, 0x00000139
.word 0x0000013C, 0x0000013D
.word 0x00000140, 0x00000141
.word 0x00000144, 0x00000145
.word 0x00000148, 0x00000149
.word 0x0000014C, 0x0000014D
.word 0x00000150, 0x00000151
.word 0x00000154, 0x00000155
.word 0x00000158, 0x00000159
.word 0x0000015C, 0x0000015D
.word 0x00000160, 0x00000161
.word 0x00000164, 0x00000165
.word 0x00000168, 0x00000169
.word 0x0000016C, 0x0000016D
.word 0x00000170, 0x00000171
.word 0x00000174, 0x00000175
.word 0x00000178, 0x00000179
.word 0x0000017C, 0x0000017D
.word 0x00000180, 0x00000181
.word 0x00000184, 0x00000185
.word 0x00000188, 0x00000189
.word 0x0000018C, 0x0000018D
.word 0x00000190, 0x00000191
.word 0x00000194, 0x00000195
.word 0x00000198, 0x00000199
.word 0x0000019C, 0x0000019D
.word 0x000001A0, 0x000001A1
.word 0x000001A4, 0x000001A5
.word 0x000001A8, 0x000001A9
.word 0x000001AC, 0x000001AD
.word 0x000001B0, 0x000001B1
.word 0x000001B4, 0x000001B5
.word 0x000001B8, 0x000001B9
.word 0x000001BC, 0x000001BD
.word 0x000001C0, 0x000001C1
.word 0x000001C4, 0x000001C5
.word 0x000001C8, 0x000001C9
.word 0x000001CC, 0x000001CD
.word 0x000001D0, 0x000001D1
.word 0x000001D4, 0x000001D4
.word 0x000001D4, 0x000001D5
.word 0x000001D8, 0x000001D8
.word 0x000001D8, 0x000001D9
.word 0x000001DC, 0x000001DC
.word 0x000001DC, 0x000001DD
.word 0x000001E0, 0x000001E0
.word 0x000001E0, 0x000001E1
.word 0x000001E4, 0x000001E4
.word 0x000001E4, 0x000001E5
.word 0x000001E8, 0x000001E8
.word 0x000001E8, 0x000001E8
.word 0x000001E8, 0x000001E9
.word 0x000001EC, 0x000001EC
.word 0x000001EC, 0x000001ED
.word 0x000001F0, 0x000001F0
.word 0x000001F0, 0x000001F1
.word 0x000001F4, 0x000001F4
.word 0x000001F4, 0x000001F5
.word 0x000001F8, 0x000001F8
.word 0x000001F8, 0x000001F9
.word 0x000001FC, 0x000001FC
.word 0x000001FC, 0x000001FD
.word 0x00000200, 0x00000201
.word 0x00000204, 0x00000205
.word 0x00000208, 0x00000209
.word 0x0000020C, 0x0000020D
.word 0x00000210, 0x00000211
.word 0x00000214, 0x00000215
.word 0x00000218, 0x00000219
.word 0x0000021C, 0x0000021D
.word 0x00000220, 0x00000221
.word 0x00000224, 0x00000225
.word 0x00000228, 0x00000229
.word 0x0000022C, 0x0000022D
.word 0x00000230, 0x00000231
.word 0x00000234, 0x00000235
.word 0x00000238, 0x00000239
.word 0x0000023C, 0x0000023D
.word 0x00000240, 0x00000241
.word 0x00000244, 0x00000245
.word 0x00000248, 0x00000249
.word 0x0000024C, 0x0000024D
.word 0x00000250, 0x00000251
.word 0x00000254, 0x00000255
.word 0x00000258, 0x00000259
.word 0x0000025C, 0x0000025D
.word 0x00000260, 0x00000261
.word 0x00000264, 0x00000265
.word 0x00000268, 0x00000269
.word 0x0000026C, 0x0000026D
.word 0x00000270, 0x00000271
.word 0x00000274, 0x00000275
.word 0x00000278, 0x00000279
.word 0x0000027C, 0x0000027D
.word 0x00000280, 0x00000281
.word 0x00000284, 0x00000285
.word 0x00000288, 0x00000289
.word 0x0000028C, 0x0000028D
.word 0x00000290, 0x00000291
.word 0x00000294, 0x00000295
.word 0x00000298, 0x00000299
.word 0x0000029C, 0x0000029D
.word 0x000002A0, 0x000002A1
.word 0x000002A4, 0x000002A5
.word 0x000002A8, 0x000002A9
.word 0x000002AC, 0x000002AD
.word 0x000002B0, 0x000002B1
.word 0x000002B4, 0x000002B5
.word 0x000002B8, 0x000002B9
.word 0x000002BC, 0x000002BD
.word 0x000002C0, 0x000002C1
.word 0x000002C4, 0x000002C5
.word 0x000002C8, 0x000002C9
.word 0x000002CC, 0x000002CD
.word 0x000002D0, 0x000002D1
.word 0x000002D4, 0x000002D5
.word 0x000002D8, 0x000002D9
.word 0x000002DC, 0x000002DD
.word 0x000002E0, 0x000002E1
.word 0x000002E4, 0x000002E5
.word 0x000002E8, 0x000002E9
.word 0x000002EC, 0x000002ED
.word 0x000002F0, 0x000002F1
.word 0x000002F4, 0x000002F5
.word 0x000002F8, 0x000002F9
.word 0x000002FC, 0x000002FD
.word 0x00000300, 0x00000301
.word 0x00000304, 0x00000305
.word 0x00000308, 0x00000309
.word 0x0000030C, 0x0000030D
.word 0x00000310, 0x00000311
.word 0x00000314, 0x00000315
.word 0x00000318, 0x00000319
.word 0x0000031C, 0x0000031D
.word 0x00000320, 0x00000321
.word 0x00000324, 0x00000325
.word 0x00000328, 0x00000329
.word 0x0000032C, 0x0000032D
.word 0x00000330, 0x00000331
.word 0x00000334, 0x00000335
.word 0x00000338, 0x00000339
.word 0x0000033C, 0x0000033D
.word 0x00000340, 0x00000341
.word 0x00000344, 0x00000345
.word 0x00000348, 0x00000349
.word 0x0000034C, 0x0000034D
.word 0x00000350, 0x00000351
.word 0x00000354, 0x00000355
.word 0x00000358, 0x00000359
.word 0x0000035C, 0x0000035D
.word 0x00000360, 0x00000361
.word 0x00000364, 0x00000365
.word 0x00000368, 0x00000369
.word 0x0000036C, 0x0000036D
.word 0x00000370, 0x00000371
.word 0x00000374, 0x00000375
.word 0x00000378, 0x00000379
.word 0x0000037C, 0x0000037D
.word 0x00000380, 0x00000381
.word 0x00000384, 0x00000385
.word 0x00000388, 0x00000389
.word 0x0000038C, 0x0000038D
.word 0x00000390, 0x00000391
.word 0x00000394, 0x00000395
.word 0x00000398, 0x00000399
.word 0x0000039C, 0x0000039D
.word 0x000003A0, 0x000003A1
.word 0x000003A4, 0x000003A5
.word 0x000003A8, 0x000003A9
.word 0x000003AC, 0x000003AD
.word 0x000003B0, 0x000003B1
.word 0x000003B4, 0x000003B5
.word 0x000003B8, 0x000003B9
.word 0x000003BC, 0x000003BD
.word 0x000003C0, 0x000003C1
.word 0x000003C4, 0x000003C5
.word 0x000003C8, 0x000003C9
.word 0x000003CC, 0x000003CD
.word 0x000003D0, 0x000003D1
.word 0x000003D4, 0x000003D5
.word 0x000003D8, 0x000003D9
.word 0x000003DC, 0x000003DD
.word 0x000003E0, 0x000003E1
.word 0x000003E4, 0x000003E5
.word 0x000003E8, 0x000003E9
.word 0x000003EC, 0x000003ED
.word 0x000003F0, 0x000003F1
.word 0x000003F4, 0x000003F5
.word 0x000003F8, 0x000003F9
.word 0x000003FC, 0x000003FD
.word 0x00000400, 0x00000401
.word 0x00000404, 0x00000405
.word 0x00000408, 0x00000409
.word 0x0000040C, 0x0000040D
.word 0x00000410, 0x00000411
.word 0x00000414, 0x00000415
.word 0x00000418, 0x00000419
.word 0x0000041C, 0x0000041D
.word 0x00000420, 0x00000421
.word 0x00000424, 0x00000425
.word 0x00000428, 0x00000429
.word 0x0000042C, 0x0000042D
.word 0x00000430, 0x00000431
.word 0x00000434, 0x00000435
.word 0x00000438, 0x00000439
.word 0x0000043C, 0x0000043D
.word 0x00000440, 0x00000441
.word 0x00000444, 0x00000445
.word 0x00000448, 0x00000449
.word 0x0000044C, 0x0000044D
.word 0x00000450, 0x00000451
.word 0x00000454, 0x00000455
.word 0x00000458, 0x00000459
.word 0x0000045C, 0x0000045D
.word 0x00000460, 0x00000461
.word 0x00000464, 0x00000465
.word 0x00000468, 0x00000469
.word 0x0000046C, 0x0000046D
.word 0x00000470, 0x00000471
.word 0x00000474, 0x00000475
.word 0x00000478, 0x00000479
.word 0x0000047C, 0x0000047D
.word 0x00000480, 0x00000481
.word 0x00000484, 0x00000485
.word 0x00000488, 0x00000489
.word 0x0000048C, 0x0000048D
.word 0x00000490, 0x00000491
.word 0x00000494, 0x00000495
.word 0x00000498, 0x00000499
.word 0x0000049C, 0x0000049D
.word 0x000004A0, 0x000004A1
.word 0x000004A4, 0x000004A5
.word 0x000004A8, 0x000004A9
.word 0x000004AC, 0x000004AD
.word 0x000004B0, 0x000004B1
.word 0x000004B4, 0x000004B5
.word 0x000004B8, 0x000004B9
.word 0x000004BC, 0x000004BD
.word 0x000004C0, 0x000004C1
.word 0x000004C4, 0x000004C5
.word 0x000004C8, 0x000004C9
.word 0x000004CC, 0x000004CD
.word 0x000004D0, 0x000004D1
.word 0x000004D4, 0x000004D5
.word 0x000004D8, 0x000004D9
.word 0x000004DC, 0x000004DD
.word 0x000004E0, 0x000004E0
.word 0x000004E0, 0x000004E1
.word 0x000004E4, 0x000004E4
.word 0x000004E4, 0x000004E5
.word 0x000004E8, 0x000004E8
.word 0x000004E8, 0x000004E9
.word 0x000004EC, 0x000004EC
.word 0x000004EC, 0x000004ED
.word 0x000004F0, 0x000004F1
.word 0x000004F4, 0x000004F5
.word 0x000004F8, 0x000004F9
.word 0x000004FC, 0x000004FD
.word 0x00000500, 0x00000501
.word 0x00000504, 0x00000505
.word 0x00000508, 0x00000509
.word 0x0000050C, 0x0000050D
.word 0x00000510, 0x00000511
.word 0x00000514, 0x00000515
.word 0x00000518, 0x00000519
.word 0x0000051C, 0x0000051D
.word 0x00000520, 0x00000521
.word 0x00000524, 0x00000525
.word 0x00000528, 0x00000529
.word 0x0000052C, 0x0000052D
.word 0x00000530, 0x00000531
.word 0x00000534, 0x00000535
.word 0x00000538, 0x00000539
.word 0x0000053C, 0x0000053D
.word 0x00000540, 0x00000541
.word 0x00000544, 0x00000545
.word 0x00000548, 0x00000549
.word 0x0000054C, 0x0000054D
.word 0x00000550, 0x00000551
.word 0x00000554, 0x00000555
.word 0x00000558, 0x00000559
.word 0x0000055C, 0x0000055D
.word 0x00000560, 0x00000561
.word 0x00000564, 0x00000565
.word 0x00000568, 0x00000569
.word 0x0000056C, 0x0000056D
.word 0x00000570, 0x00000571
.word 0x00000574, 0x00000575
.word 0x00000578, 0x00000579
.word 0x0000057C, 0x0000057D
.word 0x00000580, 0x00000581
.word 0x00000584, 0x00000585
.word 0x00000588, 0x00000589
.word 0x0000058C, 0x0000058D
.word 0x00000590, 0x00000591
.word 0x00000594, 0x00000595
.word 0x00000598, 0x00000599
.word 0x0000059C, 0x0000059D
.word 0x000005A0, 0x000005A1
.word 0x000005A4, 0x000005A5
.word 0x000005A8, 0x000005A9
.word 0x000005AC, 0x000005AD
.word 0x000005B0, 0x000005B1
.word 0x000005B4, 0x000005B5
.word 0x000005B8, 0x000005B9
.word 0x000005BC, 0x000005BD
.word 0x000005C0, 0x000005C1
.word 0x000005C4, 0x000005C5
.word 0x000005C8, 0x000005C9
.word 0x000005CC, 0x000005CD
.word 0x000005D0, 0x000005D1
.word 0x000005D4, 0x000005D5
.word 0x000005D8, 0x000005D9
.word 0x000005DC, 0x000005DD
.word 0x000005E0, 0x000005E1
.word 0x000005E4, 0x000005E5
.word 0x000005E8, 0x000005E9
.word 0x000005EC, 0x000005ED
.word 0x000005F0, 0x000005F1
.word 0x000005F4, 0x000005F5
.word 0x000005F8, 0x000005F9
.word 0x000005FC, 0x000005FD
.word 0x00000600, 0x00000600
.word 0x00000600, 0x00000601
.word 0x00000604, 0x00000604
.word 0x00000604, 0x00000605
.word 0x00000608, 0x00000608
.word 0x00000608, 0x00000609
.word 0x0000060C, 0x0000060C
.word 0x0000060C, 0x0000060D
.word 0x00000610, 0x00000611
.word 0x00000614, 0x00000615
.word 0x00000618, 0x00000619
.word 0x0000061C, 0x0000061D
.word 0x00000620, 0x00000621
.word 0x00000624, 0x00000625
.word 0x00000628, 0x00000629
.word 0x0000062C, 0x0000062D
.word 0x00000630, 0x00000631
.word 0x00000634, 0x00000635
.word 0x00000638, 0x00000639
.word 0x0000063C, 0x0000063D
.word 0x00000640, 0x00000641
.word 0x00000644, 0x00000645
.word 0x00000648, 0x00000649
.word 0x0000064C, 0x0000064D
.word 0x00000650, 0x00000650
.word 0x00000650, 0x00000651
.word 0x00000654, 0x00000654
.word 0x00000654, 0x00000655
.word 0x00000658, 0x00000658
.word 0x00000658, 0x00000659
.word 0x0000065C, 0x0000065C
.word 0x0000065C, 0x0000065D
.word 0x00000660, 0x00000661
.word 0x00000664, 0x00000665
.word 0x00000668, 0x00000669
.word 0x0000066C, 0x0000066D
.word 0x00000670, 0x00000671
.word 0x00000674, 0x00000675
.word 0x00000678, 0x00000679
.word 0x0000067C, 0x0000067D
.word 0x00000680, 0x00000681
.word 0x00000684, 0x00000685
.word 0x00000688, 0x00000689
.word 0x0000068C, 0x0000068D
.word 0x00000690, 0x00000691
.word 0x00000694, 0x00000695
.word 0x00000698, 0x00000699
.word 0x0000069C, 0x0000069D
.word 0x000006A0, 0x000006A1
.word 0x000006A4, 0x000006A5
.word 0x000006A8, 0x000006A9
.word 0x000006AC, 0x000006AD
.word 0x000006B0, 0x000006B1
.word 0x000006B4, 0x000006B4
.word 0x000006B4, 0x000006B5
.word 0x000006B8, 0x000006B8
.word 0x000006B8, 0x000006B9
.word 0x000006BC, 0x000006BD
.word 0x000006C0, 0x000006C1
.word 0x000006C4, 0x000006C5
.word 0x000006C8, 0x000006C9
.word 0x000006CC, 0x000006CC
.word 0x000006CC, 0x000006CD
.word 0x000006D0, 0x000006D0
.word 0x000006D0, 0x000006D1
.word 0x000006D4, 0x000006D5
.word 0x000006D8, 0x000006D9
.word 0x000006DC, 0x000006DD
.word 0x000006E0, 0x000006E1
.word 0x000006E4, 0x000006E5
.word 0x000006E8, 0x000006E9
.word 0x000006EC, 0x000006ED
.word 0x000006F0, 0x000006F1
.word 0x000006F4, 0x000006F5
.word 0x000006F8, 0x000006F9
.word 0x000006FC, 0x000006FD
.word 0x00000700, 0x00000701
.word 0x00000704, 0x00000705
.word 0x00000708, 0x00000709
.word 0x0000070C, 0x0000070D
.word 0x00000710, 0x00000710
.word 0x00000710, 0x00000711
.word 0x00000714, 0x00000714
.word 0x00000714, 0x00000715
.word 0x00000718, 0x00000718
.word 0x00000718, 0x00000719
.word 0x0000071C, 0x0000071C
.word 0x0000071C, 0x0000071D
.word 0x00000720, 0x00000721
.word 0x00000724, 0x00000725
.word 0x00000728, 0x00000729
.word 0x0000072C, 0x0000072D
.word 0x00000730, 0x00000731
.word 0x00000734, 0x00000735
.word 0x00000738, 0x00000739
.word 0x0000073C, 0x0000073D
.word 0x00000740, 0x00000741
.word 0x00000744, 0x00000744
.word 0x00000744, 0x00000745
.word 0x00000748, 0x00000748
.word 0x00000748, 0x00000749
.word 0x0000074C, 0x0000074D
.word 0x00000750, 0x00000751
.word 0x00000754, 0x00000755
.word 0x00000758, 0x00000759
.word 0x0000075C, 0x0000075D
.word 0x00000760, 0x00000761
.word 0x00000764, 0x00000765
.word 0x00000768, 0x00000769
.word 0x0000076C, 0x0000076D
.word 0x00000770, 0x00000771
.word 0x00000774, 0x00000775
.word 0x00000778, 0x00000778
.word 0x00000778, 0x00000779
.word 0x0000077C, 0x0000077C
.word 0x0000077C, 0x0000077D
.word 0x00000780, 0x00000781
.word 0x00000784, 0x00000785
.word 0x00000788, 0x00000789
.word 0x0000078C, 0x0000078D
.word 0x00000790, 0x00000791
.word 0x00000794, 0x00000795
.word 0x00000798, 0x00000799
.word 0x0000079C, 0x0000079D
.word 0x000007A0, 0x000007A1
.word 0x000007A4, 0x000007A5
.word 0x000007A8, 0x000007A9
.word 0x000007AC, 0x000007AD
.word 0x000007B0, 0x000007B0
.word 0x000007B0, 0x000007B1
.word 0x000007B4, 0x000007B4
.word 0x000007B4, 0x000007B5
.word 0x000007B8, 0x000007B9
.word 0x000007BC, 0x000007BD
.word 0x000007C0, 0x000007C1
.word 0x000007C4, 0x000007C5
.word 0x000007C8, 0x000007C9
.word 0x000007CC, 0x000007CD
.word 0x000007D0, 0x000007D1
.word 0x000007D4, 0x000007D5
.word 0x000007D8, 0x000007D9
.word 0x000007DC, 0x000007DD
.word 0x000007E0, 0x000007E1
.word 0x000007E4, 0x000007E5
.word 0x000007E8, 0x000007E9
.word 0x000007EC, 0x000007ED
.word 0x000007F0, 0x000007F1
.word 0x000007F4, 0x000007F5
.word 0x000007F8, 0x000007F8
.word 0x000007F8, 0x000007F9
.word 0x000007FC, 0x000007FC
.word 0x000007FC, 0x000007FD
.word 0x00000800, 0x00000801
.word 0x00000804, 0x00000805
.word 0x00000808, 0x00000809
.word 0x0000080C, 0x0000080D
.word 0x00000810, 0x00000811
.word 0x00000814, 0x00000815
.word 0x00000818, 0x00000819
.word 0x0000081C, 0x0000081D
.word 0x00000820, 0x00000821
.word 0x00000824, 0x00000825
.word 0x00000828, 0x00000829
.word 0x0000082C, 0x0000082D
.word 0x00000830, 0x00000831
.word 0x00000834, 0x00000835
.word 0x00000838, 0x00000839
.word 0x0000083C, 0x0000083D
.word 0x00000840, 0x00000841
.word 0x00000844, 0x00000845
.word 0x00000848, 0x00000849
.word 0x0000084C, 0x0000084D
.word 0x00000850, 0x00000851
.word 0x00000854, 0x00000855
.word 0x00000858, 0x00000859
.word 0x0000085C, 0x0000085D
.word 0x00000860, 0x00000860
.word 0x00000860, 0x00000861
.word 0x00000864, 0x00000864
.word 0x00000864, 0x00000865
.word 0x00000868, 0x00000868
.word 0x00000868, 0x00000869
.word 0x0000086C, 0x0000086C
.word 0x0000086C, 0x0000086D
.word 0x00000870, 0x00000870
.word 0x00000870, 0x00000871
.word 0x00000874, 0x00000874
.word 0x00000874, 0x00000875
.word 0x00000878, 0x00000879
.word 0x0000087C, 0x0000087D
.word 0x00000880, 0x00000881
.word 0x00000884, 0x00000885
.word 0x00000888, 0x00000889
.word 0x0000088C, 0x0000088D
.word 0x00000890, 0x00000891
.word 0x00000894, 0x00000895
.word 0x00000898, 0x00000899
.word 0x0000089C, 0x0000089D
.word 0x000008A0, 0x000008A1
.word 0x000008A4, 0x000008A5
.word 0x000008A8, 0x000008A8
.word 0x000008A8, 0x000008A9
.word 0x000008AC, 0x000008AC
.word 0x000008AC, 0x000008AD
.word 0x000008B0, 0x000008B0
.word 0x000008B0, 0x000008B1
.word 0x000008B4, 0x000008B4
.word 0x000008B4, 0x000008B5
.word 0x000008B8, 0x000008B9
.word 0x000008BC, 0x000008BD
.word 0x000008C0, 0x000008C1
.word 0x000008C4, 0x000008C5
.word 0x000008C8, 0x000008C9
.word 0x000008CC, 0x000008CD
.word 0x000008D0, 0x000008D1
.word 0x000008D4, 0x000008D5
.word 0x000008D8, 0x000008D9
.word 0x000008DC, 0x000008DD
.word 0x000008E0, 0x000008E1
.word 0x000008E4, 0x000008E5
.word 0x000008E8, 0x000008E9
.word 0x000008EC, 0x000008ED
.word 0x000008F0, 0x000008F1
.word 0x000008F4, 0x000008F5
.word 0x000008F8, 0x000008F9
.word 0x000008FC, 0x000008FD
.word 0x00000900, 0x00000901
.word 0x00000904, 0x00000905
.word 0x00000908, 0x00000909
.word 0x0000090C, 0x0000090D
.word 0x00000910, 0x00000911
.word 0x00000914, 0x00000915
.word 0x00000918, 0x00000919
.word 0x0000091C, 0x0000091D
.word 0x00000920, 0x00000921
.word 0x00000924, 0x00000925
.word 0x00000928, 0x00000929
.word 0x0000092C, 0x0000092D
.word 0x00000930, 0x00000931
.word 0x00000934, 0x00000935
.word 0x00000938, 0x00000939
.word 0x0000093C, 0x0000093D
.word 0x00000940, 0x00000941
.word 0x00000944, 0x00000945
.word 0x00000948, 0x00000949
.word 0x0000094C, 0x0000094D
.word 0x00000950, 0x00000951
.word 0x00000954, 0x00000955
.word 0x00000958, 0x00000959
.word 0x0000095C, 0x0000095D
.word 0x00000960, 0x00000961
.word 0x00000964, 0x00000965
.word 0x00000968, 0x00000969
.word 0x0000096C, 0x0000096D
.word 0x00000970, 0x00000971
.word 0x00000974, 0x00000975
.word 0x00000978, 0x00000979
.word 0x0000097C, 0x0000097D
.word 0x00000980, 0x00000981
.word 0x00000984, 0x00000985
.word 0x00000988, 0x00000989
.word 0x0000098C, 0x0000098D
.word 0x00000990, 0x00000991
.word 0x00000994, 0x00000995
.word 0x00000998, 0x00000999
.word 0x0000099C, 0x0000099D
.word 0x000009A0, 0x000009A1
.word 0x000009A4, 0x000009A5
.word 0x000009A8, 0x000009A9
.word 0x000009AC, 0x000009AD
.word 0x000009B0, 0x000009B1
.word 0x000009B4, 0x000009B5
.word 0x000009B8, 0x000009B9
.word 0x000009BC, 0x000009BD
.word 0x000009C0, 0x000009C1
.word 0x000009C4, 0x000009C5
.word 0x000009C8, 0x000009C9
.word 0x000009CC, 0x000009CD
.word 0x000009D0, 0x000009D1
.word 0x000009D4, 0x000009D5
.word 0x000009D8, 0x000009D9
.word 0x000009DC, 0x000009DD
.word 0x000009E0, 0x000009E1
.word 0x000009E4, 0x000009E5
.word 0x000009E8, 0x000009E9
.word 0x000009EC, 0x000009ED
.word 0x000009F0, 0x000009F1
.word 0x000009F4, 0x000009F5
.word 0x000009F8, 0x000009F9
.word 0x000009FC, 0x000009FD
.word 0x00000A00, 0x00000A01
.word 0x00000A04, 0x00000A05
.word 0x00000A08, 0x00000A09
.word 0x00000A0C, 0x00000A0D
.word 0x00000A10, 0x00000A11
.word 0x00000A14, 0x00000A15
.word 0x00000A18, 0x00000A19
.word 0x00000A1C, 0x00000A1D
.word 0x00000A20, 0x00000A21
.word 0x00000A24, 0x00000A25
.word 0x00000A28, 0x00000A29
.word 0x00000A2C, 0x00000A2D
.word 0x00000A30, 0x00000A31
.word 0x00000A34, 0x00000A35
.word 0x00000A38, 0x00000A39
.word 0x00000A3C, 0x00000A3D
.word 0x00000A40, 0x00000A41
.word 0x00000A44, 0x00000A45
.word 0x00000A48, 0x00000A49
.word 0x00000A4C, 0x00000A4D
.word 0x00000A50, 0x00000A51
.word 0x00000A54, 0x00000A55
.word 0x00000A58, 0x00000A59
.word 0x00000A5C, 0x00000A5D
.word 0x00000A60, 0x00000A61
.word 0x00000A64, 0x00000A65
.word 0x00000A68, 0x00000A69
.word 0x00000A6C, 0x00000A6D
.word 0x00000A70, 0x00000A71
.word 0x00000A74, 0x00000A75
.word 0x00000A78, 0x00000A79
.word 0x00000A7C, 0x00000A7D
.word 0x00000A80, 0x00000A81
.word 0x00000A84, 0x00000A85
.word 0x00000A88, 0x00000A89
.word 0x00000A8C, 0x00000A8D
.word 0x00000A90, 0x00000A91
.word 0x00000A94, 0x00000A95
.word 0x00000A98, 0x00000A99
.word 0x00000A9C, 0x00000A9D
.word 0x00000AA0, 0x00000AA1
.word 0x00000AA4, 0x00000AA5
.word 0x00000AA8, 0x00000AA9
.word 0x00000AAC, 0x00000AAD
.word 0x00000AB0, 0x00000AB1
.word 0x00000AB4, 0x00000AB5
.word 0x00000AB8, 0x00000AB9
.word 0x00000ABC, 0x00000ABD
.word 0x00000AC0, 0x00000AC1
.word 0x00000AC4, 0x00000AC5
.word 0x00000AC8, 0x00000AC9
.word 0x00000ACC, 0x00000ACD
.word 0x00000AD0, 0x00000AD1
.word 0x00000AD4, 0x00000AD5
.word 0x00000AD8, 0x00000AD9
.word 0x00000ADC, 0x00000ADD
.word 0x00000AE0, 0x00000AE1
.word 0x00000AE4, 0x00000AE5
.word 0x00000AE8, 0x00000AE9
.word 0x00000AEC, 0x00000AED
.word 0x00000AF0, 0x00000AF1
.word 0x00000AF4, 0x00000AF5
.word 0x00000AF8, 0x00000AF9
.word 0x00000AFC, 0x00000AFD
.word 0x00000B00, 0x00000B01
.word 0x00000B04, 0x00000B05
.word 0x00000B08, 0x00000B09
.word 0x00000B0C, 0x00000B0D
.word 0x00000B10, 0x00000B11
.word 0x00000B14, 0x00000B15
.word 0x00000B18, 0x00000B19
.word 0x00000B1C, 0x00000B1D
.word 0x00000B20, 0x00000B21
.word 0x00000B24, 0x00000B25
.word 0x00000B28, 0x00000B29
.word 0x00000B2C, 0x00000B2D
.word 0x00000B30, 0x00000B31
.word 0x00000B34, 0x00000B35
.word 0x00000B38, 0x00000B39
.word 0x00000B3C, 0x00000B3D
.word 0x00000B40, 0x00000B41
.word 0x00000B44, 0x00000B45
.word 0x00000B48, 0x00000B49
.word 0x00000B4C, 0x00000B4D
.word 0x00000B50, 0x00000B51
.word 0x00000B54, 0x00000B55
.word 0x00000B58, 0x00000B59
.word 0x00000B5C, 0x00000B5D
.word 0x00000B60, 0x00000B61
.word 0x00000B64, 0x00000B65
.word 0x00000B68, 0x00000B69
.word 0x00000B6C, 0x00000B6D
.word 0x00000B70, 0x00000B71
.word 0x00000B74, 0x00000B75
.word 0x00000B78, 0x00000B79
.word 0x00000B7C, 0x00000B7D
.word 0x00000B80, 0x00000B81
.word 0x00000B84, 0x00000B85
.word 0x00000B88, 0x00000B89
.word 0x00000B8C, 0x00000B8D
.word 0x00000B90, 0x00000B91
.word 0x00000B94, 0x00000B95
.word 0x00000B98, 0x00000B99
.word 0x00000B9C, 0x00000B9D
.word 0x00000BA0, 0x00000BA1
.word 0x00000BA4, 0x00000BA5
.word 0x00000BA8, 0x00000BA9
.word 0x00000BAC, 0x00000BAD
.word 0x00000BB0, 0x00000BB1
.word 0x00000BB4, 0x00000BB5
.word 0x00000BB8, 0x00000BB9
.word 0x00000BBC, 0x00000BBD
.word 0x00000BC0, 0x00000BC1
.word 0x00000BC4, 0x00000BC5
.word 0x00000BC8, 0x00000BC8
.word 0x00000BC8, 0x00000BC9
.word 0x00000BCC, 0x00000BCC
.word 0x00000BCC, 0x00000BCD
.word 0x00000BD0, 0x00000BD1
.word 0x00000BD4, 0x00000BD5
.word 0x00000BD8, 0x00000BD9
.word 0x00000BDC, 0x00000BDD
.word 0x00000BE0, 0x00000BE1
.word 0x00000BE4, 0x00000BE5
.word 0x00000BE8, 0x00000BE9
.word 0x00000BEC, 0x00000BED
.word 0x00000BF0, 0x00000BF1
.word 0x00000BF4, 0x00000BF5
.word 0x00000BF8, 0x00000BF9
.word 0x00000BFC, 0x00000BFD
.word 0x00000C00, 0x00000C01
.word 0x00000C04, 0x00000C05
.word 0x00000C08, 0x00000C09
.word 0x00000C0C, 0x00000C0D
.word 0x00000C10, 0x00000C11
.word 0x00000C14, 0x00000C15
.word 0x00000C18, 0x00000C19
.word 0x00000C1C, 0x00000C1D
.word 0x00000C20, 0x00000C21
.word 0x00000C24, 0x00000C25
.word 0x00000C28, 0x00000C29
.word 0x00000C2C, 0x00000C2D
.word 0x00000C30, 0x00000C31
.word 0x00000C34, 0x00000C35
.word 0x00000C38, 0x00000C39
.word 0x00000C3C, 0x00000C3D
.word 0x00000C40, 0x00000C41
.word 0x00000C44, 0x00000C45
.word 0x00000C48, 0x00000C49
.word 0x00000C4C, 0x00000C4D
.word 0x00000C50, 0x00000C51
.word 0x00000C54, 0x00000C55
.word 0x00000C58, 0x00000C59
.word 0x00000C5C, 0x00000C5D
.word 0x00000C60, 0x00000C61
.word 0x00000C64, 0x00000C65
.word 0x00000C68, 0x00000C69
.word 0x00000C6C, 0x00000C6D
.word 0x00000C70, 0x00000C71
.word 0x00000C74, 0x00000C75
.word 0x00000C78, 0x00000C79
.word 0x00000C7C, 0x00000C7D
.word 0x00000C80, 0x00000C81
.word 0x00000C84, 0x00000C85
.word 0x00000C88, 0x00000C89
.word 0x00000C8C, 0x00000C8D
.word 0x00000C90, 0x00000C91
.word 0x00000C94, 0x00000C95
.word 0x00000C98, 0x00000C99
.word 0x00000C9C, 0x00000C9D
.word 0x00000CA0, 0x00000CA1
.word 0x00000CA4, 0x00000CA5
.word 0x00000CA8, 0x00000CA9
.word 0x00000CAC, 0x00000CAD
.word 0x00000CB0, 0x00000CB1
.word 0x00000CB4, 0x00000CB5
.word 0x00000CB8, 0x00000CB9
.word 0x00000CBC, 0x00000CBD
.word 0x00000CC0, 0x00000CC1
.word 0x00000CC4, 0x00000CC5
.word 0x00000CC8, 0x00000CC9
.word 0x00000CCC, 0x00000CCD
.word 0x00000CD0, 0x00000CD1
.word 0x00000CD4, 0x00000CD5
.word 0x00000CD8, 0x00000CD9
.word 0x00000CDC, 0x00000CDD
.word 0x00000CE0, 0x00000CE1
.word 0x00000CE4, 0x00000CE5
.word 0x00000CE8, 0x00000CE9
.word 0x00000CEC, 0x00000CED
.word 0x00000CF0, 0x00000CF1
.word 0x00000CF4, 0x00000CF5
.word 0x00000CF8, 0x00000CF9
.word 0x00000CFC, 0x00000CFD
.word 0x00000D00, 0x00000D01
.word 0x00000D04, 0x00000D05
.word 0x00000D08, 0x00000D09
.word 0x00000D0C, 0x00000D0D
.word 0x00000D10, 0x00000D11
.word 0x00000D14, 0x00000D15
.word 0x00000D18, 0x00000D19
.word 0x00000D1C, 0x00000D1D
.word 0x00000D20, 0x00000D21
.word 0x00000D24, 0x00000D25
.word 0x00000D28, 0x00000D29
.word 0x00000D2C, 0x00000D2D
.word 0x00000D30, 0x00000D31
.word 0x00000D34, 0x00000D35
.word 0x00000D38, 0x00000D39
.word 0x00000D3C, 0x00000D3D
.word 0x00000D40, 0x00000D41
.word 0x00000D44, 0x00000D45
.word 0x00000D48, 0x00000D49
.word 0x00000D4C, 0x00000D4D
.word 0x00000D50, 0x00000D51
.word 0x00000D54, 0x00000D55
.word 0x00000D58, 0x00000D59
.word 0x00000D5C, 0x00000D5D
.word 0x00000D60, 0x00000D61
.word 0x00000D64, 0x00000D65
.word 0x00000D68, 0x00000D69
.word 0x00000D6C, 0x00000D6D
.word 0x00000D70, 0x00000D71
.word 0x00000D74, 0x00000D75
.word 0x00000D78, 0x00000D79
.word 0x00000D7C, 0x00000D7D
.word 0x00000D80, 0x00000D81
.word 0x00000D84, 0x00000D85
.word 0x00000D88, 0x00000D89
.word 0x00000D8C, 0x00000D8D
.word 0x00000D90, 0x00000D91
.word 0x00000D94, 0x00000D95
.word 0x00000D98, 0x00000D99
.word 0x00000D9C, 0x00000D9D
.word 0x00000DA0, 0x00000DA1
.word 0x00000DA4, 0x00000DA5
.word 0x00000DA8, 0x00000DA9
.word 0x00000DAC, 0x00000DAD
.word 0x00000DB0, 0x00000DB1
.word 0x00000DB4, 0x00000DB5
.word 0x00000DB8, 0x00000DB9
.word 0x00000DBC, 0x00000DBD
.word 0x00000DC0, 0x00000DC0
.word 0x00000DC0, 0x00000DC1
.word 0x00000DC4, 0x00000DC4
.word 0x00000DC4, 0x00000DC5
.word 0x00000DC8, 0x00000DC9
.word 0x00000DCC, 0x00000DCD
.word 0x00000DD0, 0x00000DD1
.word 0x00000DD4, 0x00000DD5
.word 0x00000DD8, 0x00000DD9
.word 0x00000DDC, 0x00000DDD
.word 0x00000DE0, 0x00000DE1
.word 0x00000DE4, 0x00000DE5
.word 0x00000DE8, 0x00000DE8
.word 0x00000DE8, 0x00000DE9
.word 0x00000DEC, 0x00000DEC
.word 0x00000DEC, 0x00000DED
.word 0x00000DF0, 0x00000DF0
.word 0x00000DF0, 0x00000DF1
.word 0x00000DF4, 0x00000DF4
.word 0x00000DF4, 0x00000DF5
.word 0x00000DF8, 0x00000DF9
.word 0x00000DFC, 0x00000DFC
.word 0x00000DFC, 0x00000DFD
.word 0x00000E00, 0x00000E00
.word 0x00000E00, 0x00000E01
.word 0x00000E04, 0x00000E05
.word 0x00000E08, 0x00000E09
.word 0x00000E0C, 0x00000E0D
.word 0x00000E10, 0x00000E11
.word 0x00000E14, 0x00000E15
.word 0x00000E18, 0x00000E19
.word 0x00000E1C, 0x00000E1D
.word 0x00000E20, 0x00000E21
.word 0x00000E24, 0x00000E24
.word 0x00000E24, 0x00000E25
.word 0x00000E28, 0x00000E28
.word 0x00000E28, 0x00000E29
.word 0x00000E2C, 0x00000E2C
.word 0x00000E2C, 0x00000E2D
.word 0x00000E30, 0x00000E30
.word 0x00000E30, 0x00000E30
.word 0x00000E30, 0x00000E31
.word 0x00000E34, 0x00000E34
.word 0x00000E34, 0x00000E35
.word 0x00000E38, 0x00000E38
.word 0x00000E38, 0x00000E39
.word 0x00000E3C, 0x00000E3C
.word 0x00000E3C, 0x00000E3D
.word 0x00000E40, 0x00000E40
.word 0x00000E40, 0x00000E41
.word 0x00000E44, 0x00000E44
.word 0x00000E44, 0x00000E45
.word 0x00000E48, 0x00000E49
.word 0x00000E4C, 0x00000E4D
.word 0x00000E50, 0x00000E51
.word 0x00000E54, 0x00000E55
.word 0x00000E58, 0x00000E59
.word 0x00000E5C, 0x00000E5D
.word 0x00000E60, 0x00000E61
.word 0x00000E64, 0x00000E65
.word 0x00000E68, 0x00000E69
.word 0x00000E6C, 0x00000E6D
.word 0x00000E70, 0x00000E71
.word 0x00000E74, 0x00000E75
.word 0x00000E78, 0x00000E78
.word 0x00000E78, 0x00000E79
.word 0x00000E7C, 0x00000E7C
.word 0x00000E7C, 0x00000E7D
.word 0x00000E80, 0x00000E80
.word 0x00000E80, 0x00000E81
.word 0x00000E84, 0x00000E84
.word 0x00000E84, 0x00000E85
.word 0x00000E88, 0x00000E88
.word 0x00000E88, 0x00000E89
.word 0x00000E8C, 0x00000E8C
.word 0x00000E8C, 0x00000E8D
.word 0x00000E90, 0x00000E91
.word 0x00000E94, 0x00000E95
.word 0x00000E98, 0x00000E99
.word 0x00000E9C, 0x00000E9D
.word 0x00000EA0, 0x00000EA1
.word 0x00000EA4, 0x00000EA5
.word 0x00000EA8, 0x00000EA9
.word 0x00000EAC, 0x00000EAD
.word 0x00000EB0, 0x00000EB1
.word 0x00000EB4, 0x00000EB5
.word 0x00000EB8, 0x00000EB9
.word 0x00000EBC, 0x00000EBD
.word 0x00000EC0, 0x00000EC1
.word 0x00000EC4, 0x00000EC5
.word 0x00000EC8, 0x00000EC9
.word 0x00000ECC, 0x00000ECD
.word 0x00000ED0, 0x00000ED1
.word 0x00000ED4, 0x00000ED5
.word 0x00000ED8, 0x00000ED9
.word 0x00000EDC, 0x00000EDD
.word 0x00000EE0, 0x00000EE1
.word 0x00000EE4, 0x00000EE5
.word 0x00000EE8, 0x00000EE9
.word 0x00000EEC, 0x00000EED
.word 0x00000EF0, 0x00000EF1
.word 0x00000EF4, 0x00000EF5
.word 0x00000EF8, 0x00000EF9
.word 0x00000EFC, 0x00000EFD
.word 0x00000F00, 0x00000F01
.word 0x00000F04, 0x00000F05
.word 0x00000F08, 0x00000F09
.word 0x00000F0C, 0x00000F0D
.word 0x00000F10, 0x00000F11
.word 0x00000F14, 0x00000F15
.word 0x00000F18, 0x00000F19
.word 0x00000F1C, 0x00000F1D
.word 0x00000F20, 0x00000F21
.word 0x00000F24, 0x00000F25
.word 0x00000F28, 0x00000F29
.word 0x00000F2C, 0x00000F2D
.word 0x00000F30, 0x00000F31
.word 0x00000F34, 0x00000F35
.word 0x00000F38, 0x00000F39
.word 0x00000F3C, 0x00000F3D
.word 0x00000F40, 0x00000F41
.word 0x00000F44, 0x00000F45
.word 0x00000F48, 0x00000F49
.word 0x00000F4C, 0x00000F4D
.word 0x00000F50, 0x00000F51
.word 0x00000F54, 0x00000F55
.word 0x00000F58, 0x00000F59
.word 0x00000F5C, 0x00000F5D
.word 0x00000F60, 0x00000F61
.word 0x00000F64, 0x00000F65
.word 0x00000F68, 0x00000F69
.word 0x00000F6C, 0x00000F6D
.word 0x00000F70, 0x00000F71
.word 0x00000F74, 0x00000F75
.word 0x00000F78, 0x00000F79
.word 0x00000F7C, 0x00000F7D
.word 0x00000F80, 0x00000F81
.word 0x00000F84, 0x00000F85
.word 0x00000F88, 0x00000F89
.word 0x00000F8C, 0x00000F8D
.word 0x00000F90, 0x00000F91
.word 0x00000F94, 0x00000F95
.word 0x00000F98, 0x00000F99
.word 0x00000F9C, 0x00000F9D
.word 0x00000FA0, 0x00000FA1
.word 0x00000FA4, 0x00000FA5
.word 0x00000FA8, 0x00000FA9
.word 0x00000FAC, 0x00000FAD
.word 0x00000FB0, 0x00000FB1
.word 0x00000FB4, 0x00000FB5
.word 0x00000FB8, 0x00000FB9
.word 0x00000FBC, 0x00000FBD
.word 0x00000FC0, 0x00000FC1
.word 0x00000FC4, 0x00000FC5
.word 0x00000FC8, 0x00000FC9
.word 0x00000FCC, 0x00000FCD
.word 0x00000FD0, 0x00000FD1
.word 0x00000FD4, 0x00000FD5
.word 0x00000FD8, 0x00000FD9
.word 0x00000FDC, 0x00000FDD
.word 0x00000FE0, 0x00000FE1
.word 0x00000FE4, 0x00000FE5
.word 0x00000FE8, 0x00000FE9
.word 0x00000FEC, 0x00000FED
.word 0x00000FF0, 0x00000FF1
.word 0x00000FF4, 0x00000FF5
.word 0x00000FF8, 0x00000FF9
.word 0x00000FFC, 0x00000FFD
.word 0x00001000, 0x00001001
.word 0x00001004, 0x00001005
.word 0x00001008, 0x00001009
.word 0x0000100C, 0x0000100D
.word 0x00001010, 0x00001011
.word 0x00001014, 0x00001015
.word 0x00001018, 0x00001019
.word 0x0000101C, 0x0000101D
.word 0x00001020, 0x00001021
.word 0x00001024, 0x00001025
.word 0x00001028, 0x00001029
.word 0x0000102C, 0x0000102D
.word 0x00001030, 0x00001031
.word 0x00001034, 0x00001035
.word 0x00001038, 0x00001039
.word 0x0000103C, 0x0000103D
.word 0x00001040, 0x00001041
.word 0x00001044, 0x00001045
.word 0x00001048, 0x00001049
.word 0x0000104C, 0x0000104D
.word 0x00001050, 0x00001051
.word 0x00001054, 0x00001055
.word 0x00001058, 0x00001059
.word 0x0000105C, 0x0000105D
.word 0x00001060, 0x00001061
.word 0x00001064, 0x00001065
.word 0x00001068, 0x00001069
.word 0x0000106C, 0x0000106D
.word 0x00001070, 0x00001071
.word 0x00001074, 0x00001075
.word 0x00001078, 0x00001079
.word 0x0000107C, 0x0000107D
.word 0x00001080, 0x00001081
.word 0x00001084, 0x00001085
.word 0x00001088, 0x00001089
.word 0x0000108C, 0x0000108D
.word 0x00001090, 0x00001091
.word 0x00001094, 0x00001095
.word 0x00001098, 0x00001099
.word 0x0000109C, 0x0000109D
.word 0x000010A0, 0x000010A1
.word 0x000010A4, 0x000010A5
.word 0x000010A8, 0x000010A9
.word 0x000010AC, 0x000010AD
.word 0x000010B0, 0x000010B1
.word 0x000010B4, 0x000010B5
.word 0x000010B8, 0x000010B9
.word 0x000010BC, 0x000010BD
.word 0x000010C0, 0x000010C1
.word 0x000010C4, 0x000010C5
.word 0x000010C8, 0x000010C9
.word 0x000010CC, 0x000010CD
.word 0x000010D0, 0x000010D1
.word 0x000010D4, 0x000010D5
.word 0x000010D8, 0x000010D9
.word 0x000010DC, 0x000010DD
.word 0x000010E0, 0x000010E1
.word 0x000010E4, 0x000010E5
.word 0x000010E8, 0x000010E9
.word 0x000010EC, 0x000010ED
.word 0x000010F0, 0x000010F1
.word 0x000010F4, 0x000010F5
.word 0x000010F8, 0x000010F9
.word 0x000010FC, 0x000010FD
.word 0x00001100, 0x00001101
.word 0x00001104, 0x00001105
.word 0x00001108, 0x00001109
.word 0x0000110C, 0x0000110D
.word 0x00001110, 0x00001110
.word 0x00001110, 0x00001111
.word 0x00001114, 0x00001114
.word 0x00001114, 0x00001115
.word 0x00001118, 0x00001119
.word 0x0000111C, 0x0000111D
.word 0x00001120, 0x00001121
.word 0x00001124, 0x00001125
.word 0x00001128, 0x00001129
.word 0x0000112C, 0x0000112D
.word 0x00001130, 0x00001131
.word 0x00001134, 0x00001135
.word 0x00001138, 0x00001139
.word 0x0000113C, 0x0000113D
.word 0x00001140, 0x00001141
.word 0x00001144, 0x00001145
.word 0x00001148, 0x00001149
.word 0x0000114C, 0x0000114D
.word 0x00001150, 0x00001151
.word 0x00001154, 0x00001155
.word 0x00001158, 0x00001159
.word 0x0000115C, 0x0000115D
.word 0x00001160, 0x00001161
.word 0x00001164, 0x00001165
.word 0x00001168, 0x00001169
.word 0x0000116C, 0x0000116D
.word 0x00001170, 0x00001171
.word 0x00001174, 0x00001175
.word 0x00001178, 0x00001179
.word 0x0000117C, 0x0000117D
.word 0x00001180, 0x00001181
.word 0x00001184, 0x00001185
.word 0x00001188, 0x00001189
.word 0x0000118C, 0x0000118D
.word 0x00001190, 0x00001191
.word 0x00001194, 0x00001195
.word 0x00001198, 0x00001199
.word 0x0000119C, 0x0000119D
.word 0x000011A0, 0x000011A1
.word 0x000011A4, 0x000011A5
.word 0x000011A8, 0x000011A9
.word 0x000011AC, 0x000011AD
.word 0x000011B0, 0x000011B1
.word 0x000011B4, 0x000011B5
.word 0x000011B8, 0x000011B9
.word 0x000011BC, 0x000011BD
.word 0x000011C0, 0x000011C1
.word 0x000011C4, 0x000011C5
.word 0x000011C8, 0x000011C9
.word 0x000011CC, 0x000011CD
.word 0x000011D0, 0x000011D1
.word 0x000011D4, 0x000011D5
.word 0x000011D8, 0x000011D9
.word 0x000011DC, 0x000011DD
.word 0x000011E0, 0x000011E1
.word 0x000011E4, 0x000011E5
.word 0x000011E8, 0x000011E9
.word 0x000011EC, 0x000011ED
.word 0x000011F0, 0x000011F1
.word 0x000011F4, 0x000011F5
.word 0x000011F8, 0x000011F9
.word 0x000011FC, 0x000011FD
.word 0x00001200, 0x00001201
.word 0x00001204, 0x00001205
.word 0x00001208, 0x00001209
.word 0x0000120C, 0x0000120D
.word 0x00001210, 0x00001211
.word 0x00001214, 0x00001215
.word 0x00001218, 0x00001219
.word 0x0000121C, 0x0000121D
.word 0x00001220, 0x00001221
.word 0x00001224, 0x00001225
.word 0x00001228, 0x00001229
.word 0x0000122C, 0x0000122D
.word 0x00001230, 0x00001231
.word 0x00001234, 0x00001235
.word 0x00001238, 0x00001239
.word 0x0000123C, 0x0000123D
.word 0x00001240, 0x00001241
.word 0x00001244, 0x00001245
.word 0x00001248, 0x00001249
.word 0x0000124C, 0x0000124D
.word 0x00001250, 0x00001251
.word 0x00001254, 0x00001255
.word 0x00001258, 0x00001258
.word 0x00001258, 0x00001259
.word 0x0000125C, 0x0000125C
.word 0x0000125C, 0x0000125D
.word 0x00001260, 0x00001261
.word 0x00001264, 0x00001264
.word 0x00001264, 0x00001265
.word 0x00001268, 0x00001268
.word 0x00001268, 0x00001269
.word 0x0000126C, 0x0000126D
.word 0x00001270, 0x00001271
.word 0x00001274, 0x00001275
.word 0x00001278, 0x00001279
.word 0x0000127C, 0x0000127D
.word 0x00001280, 0x00001281
.word 0x00001284, 0x00001285
.word 0x00001288, 0x00001289
.word 0x0000128C, 0x0000128D
.word 0x00001290, 0x00001291
.word 0x00001294, 0x00001295
.word 0x00001298, 0x00001299
.word 0x0000129C, 0x0000129D
.word 0x000012A0, 0x000012A1
.word 0x000012A4, 0x000012A5
.word 0x000012A8, 0x000012A9
.word 0x000012AC, 0x000012AD
.word 0x000012B0, 0x000012B1
.word 0x000012B4, 0x000012B5
.word 0x000012B8, 0x000012B9
.word 0x000012BC, 0x000012BD
.word 0x000012C0, 0x000012C1
.word 0x000012C4, 0x000012C5
.word 0x000012C8, 0x000012C9
.word 0x000012CC, 0x000012CD
.word 0x000012D0, 0x000012D1
.word 0x000012D4, 0x000012D5
.word 0x000012D8, 0x000012D9
.word 0x000012DC, 0x000012DD
.word 0x000012E0, 0x000012E1
.word 0x000012E4, 0x000012E5
.word 0x000012E8, 0x000012E9
.word 0x000012EC, 0x000012ED
.word 0x000012F0, 0x000012F1
.word 0x000012F4, 0x000012F5
.word 0x000012F8, 0x000012F9
.word 0x000012FC, 0x000012FD
.word 0x00001300, 0x00001301
.word 0x00001304, 0x00001305
.word 0x00001308, 0x00001309
.word 0x0000130C, 0x0000130D
.word 0x00001310, 0x00001311
.word 0x00001314, 0x00001315
.word 0x00001318, 0x00001319
.word 0x0000131C, 0x0000131D
.word 0x00001320, 0x00001321
.word 0x00001324, 0x00001325
.word 0x00001328, 0x00001329
.word 0x0000132C, 0x0000132D
.word 0x00001330, 0x00001331
.word 0x00001334, 0x00001335
.word 0x00001338, 0x00001339
.word 0x0000133C, 0x0000133D
.word 0x00001340, 0x00001341
.word 0x00001344, 0x00001345
.word 0x00001348, 0x00001349
.word 0x0000134C, 0x0000134D
.word 0x00001350, 0x00001351
.word 0x00001354, 0x00001355
.word 0x00001358, 0x00001359
.word 0x0000135C, 0x0000135D
.word 0x00001360, 0x00001361
.word 0x00001364, 0x00001365
.word 0x00001368, 0x00001369
.word 0x0000136C, 0x0000136D
.word 0x00001370, 0x00001371
.word 0x00001374, 0x00001375
.word 0x00001378, 0x00001379
.word 0x0000137C, 0x0000137D
.word 0x00001380, 0x00001381
.word 0x00001384, 0x00001385
.word 0x00001388, 0x00001389
.word 0x0000138C, 0x0000138D
.word 0x00001390, 0x00001391
.word 0x00001394, 0x00001395
.word 0x00001398, 0x00001399
.word 0x0000139C, 0x0000139D
.word 0x000013A0, 0x000013A1
.word 0x000013A4, 0x000013A5
.word 0x000013A8, 0x000013A9
.word 0x000013AC, 0x000013AD
.word 0x000013B0, 0x000013B1
.word 0x000013B4, 0x000013B5
.word 0x000013B8, 0x000013B9
.word 0x000013BC, 0x000013BD
.word 0x000013C0, 0x000013C1
.word 0x000013C4, 0x000013C5
.word 0x000013C8, 0x000013C8
.word 0x000013C8, 0x000013C9
.word 0x000013CC, 0x000013CC
.word 0x000013CC, 0x000013CD
.word 0x000013D0, 0x000013D0
.word 0x000013D0, 0x000013D1
.word 0x000013D4, 0x000013D4
.word 0x000013D4, 0x000013D5
.word 0x000013D8, 0x000013D9
.word 0x000013DC, 0x000013DD
.word 0x000013E0, 0x000013E1
.word 0x000013E4, 0x000013E5
.word 0x000013E8, 0x000013E9
.word 0x000013EC, 0x000013ED
.word 0x000013F0, 0x000013F1
.word 0x000013F4, 0x000013F5
.word 0x000013F8, 0x000013F9
.word 0x000013FC, 0x000013FD
.word 0x00001400, 0x00001401
.word 0x00001404, 0x00001405
.word 0x00001408, 0x00001409
.word 0x0000140C, 0x0000140D
.word 0x00001410, 0x00001411
.word 0x00001414, 0x00001415
.word 0x00001418, 0x00001418
.word 0x00001418, 0x00001419
.word 0x0000141C, 0x0000141C
.word 0x0000141C, 0x0000141D
.word 0x00001420, 0x00001420
.word 0x00001420, 0x00001421
.word 0x00001424, 0x00001424
.word 0x00001424, 0x00001425
.word 0x00001428, 0x00001429
.word 0x0000142C, 0x0000142D
.word 0x00001430, 0x00001431
.word 0x00001434, 0x00001435
.word 0x00001438, 0x00001439
.word 0x0000143C, 0x0000143D
.word 0x00001440, 0x00001441
.word 0x00001444, 0x00001445
.word 0x00001448, 0x00001449
.word 0x0000144C, 0x0000144D
.word 0x00001450, 0x00001451
.word 0x00001454, 0x00001455
.word 0x00001458, 0x00001459
.word 0x0000145C, 0x0000145D
.word 0x00001460, 0x00001461
.word 0x00001464, 0x00001465
.word 0x00001468, 0x00001469
.word 0x0000146C, 0x0000146D
.word 0x00001470, 0x00001471
.word 0x00001474, 0x00001475
.word 0x00001478, 0x00001479
.word 0x0000147C, 0x0000147D
.word 0x00001480, 0x00001481
.word 0x00001484, 0x00001485
.word 0x00001488, 0x00001489
.word 0x0000148C, 0x0000148D
.word 0x00001490, 0x00001491
.word 0x00001494, 0x00001495
.word 0x00001498, 0x00001499
.word 0x0000149C, 0x0000149D
.word 0x000014A0, 0x000014A1
.word 0x000014A4, 0x000014A5
.word 0x000014A8, 0x000014A9
.word 0x000014AC, 0x000014AD
.word 0x000014B0, 0x000014B1
.word 0x000014B4, 0x000014B5
.word 0x000014B8, 0x000014B9
.word 0x000014BC, 0x000014BD
.word 0x000014C0, 0x000014C1
.word 0x000014C4, 0x000014C5
.word 0x000014C8, 0x000014C9
.word 0x000014CC, 0x000014CD
.word 0x000014D0, 0x000014D1
.word 0x000014D4, 0x000014D5
.word 0x000014D8, 0x000014D9
.word 0x000014DC, 0x000014DD
.word 0x000014E0, 0x000014E1
.word 0x000014E4, 0x000014E5
.word 0x000014E8, 0x000014E9
.word 0x000014EC, 0x000014ED
.word 0x000014F0, 0x000014F1
.word 0x000014F4, 0x000014F5
.word 0x000014F8, 0x000014F9
.word 0x000014FC, 0x000014FD
.word 0x00001500, 0x00001501
.word 0x00001504, 0x00001505
.word 0x00001508, 0x00001509
.word 0x0000150C, 0x0000150D
.word 0x00001510, 0x00001511
.word 0x00001514, 0x00001515
.word 0x00001518, 0x00001519
.word 0x0000151C, 0x0000151D
.word 0x00001520, 0x00001521
.word 0x00001524, 0x00001525
.word 0x00001528, 0x00001529
.word 0x0000152C, 0x0000152D
.word 0x00001530, 0x00001531
.word 0x00001534, 0x00001535
.word 0x00001538, 0x00001539
.word 0x0000153C, 0x0000153D
.word 0x00001540, 0x00001541
.word 0x00001544, 0x00001545
.word 0x00001548, 0x00001549
.word 0x0000154C, 0x0000154D
.word 0x00001550, 0x00001551
.word 0x00001554, 0x00001555
.word 0x00001558, 0x00001559
.word 0x0000155C, 0x0000155D
.word 0x00001560, 0x00001561
.word 0x00001564, 0x00001565
.word 0x00001568, 0x00001569
.word 0x0000156C, 0x0000156D
.word 0x00001570, 0x00001571
.word 0x00001574, 0x00001575
.word 0x00001578, 0x00001579
.word 0x0000157C, 0x0000157D
.word 0x00001580, 0x00001581
.word 0x00001584, 0x00001585
.word 0x00001588, 0x00001589
.word 0x0000158C, 0x0000158D
.word 0x00001590, 0x00001591
.word 0x00001594, 0x00001595
.word 0x00001598, 0x00001599
.word 0x0000159C, 0x0000159D
.word 0x000015A0, 0x000015A1
.word 0x000015A4, 0x000015A5
.word 0x000015A8, 0x000015A9
.word 0x000015AC, 0x000015AD
.word 0x000015B0, 0x000015B1
.word 0x000015B4, 0x000015B5
.word 0x000015B8, 0x000015B9
.word 0x000015BC, 0x000015BD
.word 0x000015C0, 0x000015C1
.word 0x000015C4, 0x000015C5
.word 0x000015C8, 0x000015C9
.word 0x000015CC, 0x000015CD
.word 0x000015D0, 0x000015D1
.word 0x000015D4, 0x000015D5
.word 0x000015D8, 0x000015D9
.word 0x000015DC, 0x000015DD
.word 0x000015E0, 0x000015E1
.word 0x000015E4, 0x000015E5
.word 0x000015E8, 0x000015E9
.word 0x000015EC, 0x000015ED
.word 0x000015F0, 0x000015F1
.word 0x000015F4, 0x000015F5
.word 0x000015F8, 0x000015F8
.word 0x000015F8, 0x000015F9
.word 0x000015FC, 0x000015FC
.word 0x000015FC, 0x000015FD
.word 0x00001600, 0x00001600
.word 0x00001600, 0x00001601
.word 0x00001604, 0x00001604
.word 0x00001604, 0x00001605
.word 0x00001608, 0x00001608
.word 0x00001608, 0x00001609
.word 0x0000160C, 0x0000160C
.word 0x0000160C, 0x0000160D
.word 0x00001610, 0x00001610
.word 0x00001610, 0x00001611
.word 0x00001614, 0x00001614
.word 0x00001614, 0x00001615
.word 0x00001618, 0x00001618
.word 0x00001618, 0x00001619
.word 0x0000161C, 0x0000161C
.word 0x0000161C, 0x0000161D
.word 0x00001620, 0x00001620
.word 0x00001620, 0x00001621
.word 0x00001624, 0x00001624
.word 0x00001624, 0x00001625
.word 0x00001628, 0x00001629
.word 0x0000162C, 0x0000162C
.word 0x0000162C, 0x0000162D
.word 0x00001630, 0x00001630
.word 0x00001630, 0x00001630
.word 0x00001630, 0x00001631
.word 0x00001634, 0x00001634
.word 0x00001634, 0x00001635
.word 0x00001638, 0x00001638
.word 0x00001638, 0x00001639
.word 0x0000163C, 0x0000163C
.word 0x0000163C, 0x0000163D
.word 0x00001640, 0x00001640
.word 0x00001640, 0x00001641
.word 0x00001644, 0x00001644
.word 0x00001644, 0x00001645
.word 0x00001648, 0x00001648
.word 0x00001648, 0x00001649
.word 0x0000164C, 0x0000164C
.word 0x0000164C, 0x0000164D
.word 0x00001650, 0x00001650
.word 0x00001650, 0x00001651
.word 0x00001654, 0x00001654
.word 0x00001654, 0x00001655
.word 0x00001658, 0x00001658
.word 0x00001658, 0x00001659
.word 0x0000165C, 0x0000165C
.word 0x0000165C, 0x0000165D
.word 0x00001660, 0x00001661
.word 0x00001664, 0x00001665
.word 0x00001668, 0x00001669
.word 0x0000166C, 0x0000166D
.word 0x00001670, 0x00001671
.word 0x00001674, 0x00001675
.word 0x00001678, 0x00001679
.word 0x0000167C, 0x0000167D
.word 0x00001680, 0x00001681
.word 0x00001684, 0x00001685
.word 0x00001688, 0x00001689
.word 0x0000168C, 0x0000168D
.word 0x00001690, 0x00001691
.word 0x00001694, 0x00001695
.word 0x00001698, 0x00001699
.word 0x0000169C, 0x0000169D
.word 0x000016A0, 0x000016A1
.word 0x000016A4, 0x000016A5
.word 0x000016A8, 0x000016A9
.word 0x000016AC, 0x000016AD
.word 0x000016B0, 0x000016B1
.word 0x000016B4, 0x000016B5
.word 0x000016B8, 0x000016B9
.word 0x000016BC, 0x000016BD
.word 0x000016C0, 0x000016C1
.word 0x000016C4, 0x000016C5
.word 0x000016C8, 0x000016C9
.word 0x000016CC, 0x000016CD
.word 0x000016D0, 0x000016D1
.word 0x000016D4, 0x000016D5
.word 0x000016D8, 0x000016D9
.word 0x000016DC, 0x000016DD
.word 0x000016E0, 0x000016E1
.word 0x000016E4, 0x000016E5
.word 0x000016E8, 0x000016E9
.word 0x000016EC, 0x000016ED
.word 0x000016F0, 0x000016F1
.word 0x000016F4, 0x000016F5
.word 0x000016F8, 0x000016F9
.word 0x000016FC, 0x000016FD
.word 0x00001700, 0x00001701
.word 0x00001704, 0x00001705
.word 0x00001708, 0x00001709
.word 0x0000170C, 0x0000170D
.word 0x00001710, 0x00001711
.word 0x00001714, 0x00001715
.word 0x00001718, 0x00001719
.word 0x0000171C, 0x0000171D
.word 0x00001720, 0x00001721
.word 0x00001724, 0x00001725
.word 0x00001728, 0x00001729
.word 0x0000172C, 0x0000172D
.word 0x00001730, 0x00001731
.word 0x00001734, 0x00001735
.word 0x00001738, 0x00001739
.word 0x0000173C, 0x0000173D
.word 0x00001740, 0x00001741
.word 0x00001744, 0x00001745
.word 0x00001748, 0x00001749
.word 0x0000174C, 0x0000174D
.word 0x00001750, 0x00001751
.word 0x00001754, 0x00001755
.word 0x00001758, 0x00001759
.word 0x0000175C, 0x0000175D
.word 0x00001760, 0x00001761
.word 0x00001764, 0x00001765
.word 0x00001768, 0x00001769
.word 0x0000176C, 0x0000176D
.word 0x00001770, 0x00001771
.word 0x00001774, 0x00001775
.word 0x00001778, 0x00001779
.word 0x0000177C, 0x0000177D
.word 0x00001780, 0x00001781
.word 0x00001784, 0x00001785
.word 0x00001788, 0x00001789
.word 0x0000178C, 0x0000178D
.word 0x00001790, 0x00001791
.word 0x00001794, 0x00001795
.word 0x00001798, 0x00001799
.word 0x0000179C, 0x0000179D
.word 0x000017A0, 0x000017A1
.word 0x000017A4, 0x000017A5
.word 0x000017A8, 0x000017A9
.word 0x000017AC, 0x000017AD
.word 0x000017B0, 0x000017B1
.word 0x000017B4, 0x000017B5
.word 0x000017B8, 0x000017B9
.word 0x000017BC, 0x000017BD
.word 0x000017C0, 0x000017C1
.word 0x000017C4, 0x000017C5
.word 0x000017C8, 0x000017C9
.word 0x000017CC, 0x000017CD
.word 0x000017D0, 0x000017D1
.word 0x000017D4, 0x000017D5
.word 0x000017D8, 0x000017D9
.word 0x000017DC, 0x000017DD
.word 0x000017E0, 0x000017E1
.word 0x000017E4, 0x000017E5
.word 0x000017E8, 0x000017E9
.word 0x000017EC, 0x000017ED
.word 0x000017F0, 0x000017F1
.word 0x000017F4, 0x000017F5
.word 0x000017F8, 0x000017F9
.word 0x000017FC, 0x000017FD
.word 0x00001800, 0x00001801
.word 0x00001804, 0x00001804
.word 0x00001804, 0x00001805
.word 0x00001808, 0x00001808
.word 0x00001808, 0x00001808
.word 0x00001808, 0x00001809
.word 0x0000180C, 0x0000180C
.word 0x0000180C, 0x0000180D
.word 0x00001810, 0x00001811
.word 0x00001814, 0x00001815
.word 0x00001818, 0x00001819
.word 0x0000181C, 0x0000181D
.word 0x00001820, 0x00001821
.word 0x00001824, 0x00001824
.word 0x00001824, 0x00001825
.word 0x00001828, 0x00001828
.word 0x00001828, 0x00001829
.word 0x0000182C, 0x0000182D
.word 0x00001830, 0x00001831
.word 0x00001834, 0x00001835
.word 0x00001838, 0x00001839
.word 0x0000183C, 0x0000183D
.word 0x00001840, 0x00001841
.word 0x00001844, 0x00001845
.word 0x00001848, 0x00001849
.word 0x0000184C, 0x0000184D
.word 0x00001850, 0x00001851
.word 0x00001854, 0x00001855
.word 0x00001858, 0x00001859
.word 0x0000185C, 0x0000185D
.word 0x00001860, 0x00001861
.word 0x00001864, 0x00001865
.word 0x00001868, 0x00001869
.word 0x0000186C, 0x0000186D
.word 0x00001870, 0x00001871
.word 0x00001874, 0x00001875
.word 0x00001878, 0x00001879
.word 0x0000187C, 0x0000187D
.word 0x00001880, 0x00001881
.word 0x00001884, 0x00001885
.word 0x00001888, 0x00001889
.word 0x0000188C, 0x0000188D
.word 0x00001890, 0x00001891
.word 0x00001894, 0x00001895
.word 0x00001898, 0x00001899
.word 0x0000189C, 0x0000189D
.word 0x000018A0, 0x000018A1
.word 0x000018A4, 0x000018A5
.word 0x000018A8, 0x000018A9
.word 0x000018AC, 0x000018AD
.word 0x000018B0, 0x000018B1
.word 0x000018B4, 0x000018B5
.word 0x000018B8, 0x000018B9
.word 0x000018BC, 0x000018BD
.word 0x000018C0, 0x000018C1
.word 0x000018C4, 0x000018C5
.word 0x000018C8, 0x000018C9
.word 0x000018CC, 0x000018CD
.word 0x000018D0, 0x000018D1
.word 0x000018D4, 0x000018D5
.word 0x000018D8, 0x000018D9
.word 0x000018DC, 0x000018DD
.word 0x000018E0, 0x000018E1
.word 0x000018E4, 0x000018E5
.word 0x000018E8, 0x000018E9
.word 0x000018EC, 0x000018ED
.word 0x000018F0, 0x000018F1
.word 0x000018F4, 0x000018F5
.word 0x000018F8, 0x000018F9
.word 0x000018FC, 0x000018FD
.word 0x00001900, 0x00001901
.word 0x00001904, 0x00001905
.word 0x00001908, 0x00001909
.word 0x0000190C, 0x0000190D
.word 0x00001910, 0x00001911
.word 0x00001914, 0x00001915
.word 0x00001918, 0x00001919
.word 0x0000191C, 0x0000191D
.word 0x00001920, 0x00001921
.word 0x00001924, 0x00001925
.word 0x00001928, 0x00001929
.word 0x0000192C, 0x0000192D
.word 0x00001930, 0x00001931
.word 0x00001934, 0x00001935
.word 0x00001938, 0x00001939
.word 0x0000193C, 0x0000193D
.word 0x00001940, 0x00001941
.word 0x00001944, 0x00001945
.word 0x00001948, 0x00001949
.word 0x0000194C, 0x0000194D
.word 0x00001950, 0x00001951
.word 0x00001954, 0x00001955
.word 0x00001958, 0x00001958
.word 0x00001958, 0x00001959
.word 0x0000195C, 0x0000195C
.word 0x0000195C, 0x0000195D
.word 0x00001960, 0x00001960
.word 0x00001960, 0x00001961
.word 0x00001964, 0x00001964
.word 0x00001964, 0x00001965
.word 0x00001968, 0x00001969
.word 0x0000196C, 0x0000196D
.word 0x00001970, 0x00001971
.word 0x00001974, 0x00001975
.word 0x00001978, 0x00001979
.word 0x0000197C, 0x0000197D
.word 0x00001980, 0x00001981
.word 0x00001984, 0x00001985
.word 0x00001988, 0x00001989
.word 0x0000198C, 0x0000198C
.word 0x0000198C, 0x0000198D
.word 0x00001990, 0x00001990
.word 0x00001990, 0x00001991
.word 0x00001994, 0x00001995
.word 0x00001998, 0x00001999
.word 0x0000199C, 0x0000199D
.word 0x000019A0, 0x000019A1
.word 0x000019A4, 0x000019A5
.word 0x000019A8, 0x000019A9
.word 0x000019AC, 0x000019AD
.word 0x000019B0, 0x000019B1
.word 0x000019B4, 0x000019B5
.word 0x000019B8, 0x000019B9
.word 0x000019BC, 0x000019BD
.word 0x000019C0, 0x000019C1
.word 0x000019C4, 0x000019C5
.word 0x000019C8, 0x000019C9
.word 0x000019CC, 0x000019CD
.word 0x000019D0, 0x000019D1
.word 0x000019D4, 0x000019D5
.word 0x000019D8, 0x000019D9
.word 0x000019DC, 0x000019DD
.word 0x000019E0, 0x000019E1
.word 0x000019E4, 0x000019E5
.word 0x000019E8, 0x000019E9
.word 0x000019EC, 0x000019ED
.word 0x000019F0, 0x000019F1
.word 0x000019F4, 0x000019F5
.word 0x000019F8, 0x000019F9
.word 0x000019FC, 0x000019FD
.word 0x00001A00, 0x00001A01
.word 0x00001A04, 0x00001A05
.word 0x00001A08, 0x00001A09
.word 0x00001A0C, 0x00001A0D
.word 0x00001A10, 0x00001A11
.word 0x00001A14, 0x00001A15
.word 0x00001A18, 0x00001A19
.word 0x00001A1C, 0x00001A1D
.word 0x00001A20, 0x00001A21
.word 0x00001A24, 0x00001A25
.word 0x00001A28, 0x00001A29
.word 0x00001A2C, 0x00001A2D
.word 0x00001A30, 0x00001A31
.word 0x00001A34, 0x00001A35
.word 0x00001A38, 0x00001A39
.word 0x00001A3C, 0x00001A3D
.word 0x00001A40, 0x00001A41
.word 0x00001A44, 0x00001A45
.word 0x00001A48, 0x00001A49
.word 0x00001A4C, 0x00001A4D
.word 0x00001A50, 0x00001A51
.word 0x00001A54, 0x00001A55
.word 0x00001A58, 0x00001A59
.word 0x00001A5C, 0x00001A5D
.word 0x00001A60, 0x00001A61
.word 0x00001A64, 0x00001A65
.word 0x00001A68, 0x00001A69
.word 0x00001A6C, 0x00001A6D
.word 0x00001A70, 0x00001A71
.word 0x00001A74, 0x00001A75
.word 0x00001A78, 0x00001A79
.word 0x00001A7C, 0x00001A7D
.word 0x00001A80, 0x00001A81
.word 0x00001A84, 0x00001A85
.word 0x00001A88, 0x00001A89
.word 0x00001A8C, 0x00001A8D
.word 0x00001A90, 0x00001A91
.word 0x00001A94, 0x00001A95
.word 0x00001A98, 0x00001A99
.word 0x00001A9C, 0x00001A9D
.word 0x00001AA0, 0x00001AA1
.word 0x00001AA4, 0x00001AA5
.word 0x00001AA8, 0x00001AA9
.word 0x00001AAC, 0x00001AAD
.word 0x00001AB0, 0x00001AB1
.word 0x00001AB4, 0x00001AB5
.word 0x00001AB8, 0x00001AB9
.word 0x00001ABC, 0x00001ABD
.word 0x00001AC0, 0x00001AC1
.word 0x00001AC4, 0x00001AC5
.word 0x00001AC8, 0x00001AC9
.word 0x00001ACC, 0x00001ACD
.word 0x00001AD0, 0x00001AD1
.word 0x00001AD4, 0x00001AD5
.word 0x00001AD8, 0x00001AD9
.word 0x00001ADC, 0x00001ADD
.word 0x00001AE0, 0x00001AE0
.word 0x00001AE0, 0x00001AE1
.word 0x00001AE4, 0x00001AE4
.word 0x00001AE4, 0x00001AE5
.word 0x00001AE8, 0x00001AE9
.word 0x00001AEC, 0x00001AED
.word 0x00001AF0, 0x00001AF1
.word 0x00001AF4, 0x00001AF5
.word 0x00001AF8, 0x00001AF9
.word 0x00001AFC, 0x00001AFD
.word 0x00001B00, 0x00001B01
.word 0x00001B04, 0x00001B05
.word 0x00001B08, 0x00001B09
.word 0x00001B0C, 0x00001B0D
.word 0x00001B10, 0x00001B11
.word 0x00001B14, 0x00001B15
.word 0x00001B18, 0x00001B19
.word 0x00001B1C, 0x00001B1D
.word 0x00001B20, 0x00001B21
.word 0x00001B24, 0x00001B25
.word 0x00001B28, 0x00001B29
.word 0x00001B2C, 0x00001B2D
.word 0x00001B30, 0x00001B31
.word 0x00001B34, 0x00001B35
.word 0x00001B38, 0x00001B39
.word 0x00001B3C, 0x00001B3D
.word 0x00001B40, 0x00001B41
.word 0x00001B44, 0x00001B45
.word 0x00001B48, 0x00001B49
.word 0x00001B4C, 0x00001B4D
.word 0x00001B50, 0x00001B51
.word 0x00001B54, 0x00001B55
.word 0x00001B58, 0x00001B59
.word 0x00001B5C, 0x00001B5D
.word 0x00001B60, 0x00001B61
.word 0x00001B64, 0x00001B65
.word 0x00001B68, 0x00001B69
.word 0x00001B6C, 0x00001B6D
.word 0x00001B70, 0x00001B71
.word 0x00001B74, 0x00001B75
.word 0x00001B78, 0x00001B79
.word 0x00001B7C, 0x00001B7D
.word 0x00001B80, 0x00001B81
.word 0x00001B84, 0x00001B85
.word 0x00001B88, 0x00001B89
.word 0x00001B8C, 0x00001B8D
.word 0x00001B90, 0x00001B91
.word 0x00001B94, 0x00001B95
.word 0x00001B98, 0x00001B98
.word 0x00001B98, 0x00001B99
.word 0x00001B9C, 0x00001B9C
.word 0x00001B9C, 0x00001B9D
.word 0x00001BA0, 0x00001BA0
.word 0x00001BA0, 0x00001BA1
.word 0x00001BA4, 0x00001BA4
.word 0x00001BA4, 0x00001BA5
.word 0x00001BA8, 0x00001BA9
.word 0x00001BAC, 0x00001BAD
.word 0x00001BB0, 0x00001BB1
.word 0x00001BB4, 0x00001BB5
.word 0x00001BB8, 0x00001BB9
.word 0x00001BBC, 0x00001BBD
.word 0x00001BC0, 0x00001BC1
.word 0x00001BC4, 0x00001BC5
.word 0x00001BC8, 0x00001BC9
.word 0x00001BCC, 0x00001BCC
.word 0x00001BCC, 0x00001BCD
.word 0x00001BD0, 0x00001BD0
.word 0x00001BD0, 0x00001BD0
.word 0x00001BD0, 0x00001BD1
.word 0x00001BD4, 0x00001BD4
.word 0x00001BD4, 0x00001BD5
.word 0x00001BD8, 0x00001BD8
.word 0x00001BD8, 0x00001BD9
.word 0x00001BDC, 0x00001BDC
.word 0x00001BDC, 0x00001BDD
.word 0x00001BE0, 0x00001BE0
.word 0x00001BE0, 0x00001BE1
.word 0x00001BE4, 0x00001BE4
.word 0x00001BE4, 0x00001BE5
.word 0x00001BE8, 0x00001BE8
.word 0x00001BE8, 0x00001BE9
.word 0x00001BEC, 0x00001BEC
.word 0x00001BEC, 0x00001BED
.word 0x00001BF0, 0x00001BF0
.word 0x00001BF0, 0x00001BF1
.word 0x00001BF4, 0x00001BF4
.word 0x00001BF4, 0x00001BF5
.word 0x00001BF8, 0x00001BF8
.word 0x00001BF8, 0x00001BF9
.word 0x00001BFC, 0x00001BFC
.word 0x00001BFC, 0x00001BFD
.word 0x00001C00, 0x00001C01
.word 0x00001C04, 0x00001C05
.word 0x00001C08, 0x00001C09
.word 0x00001C0C, 0x00001C0D
.word 0x00001C10, 0x00001C10
.word 0x00001C10, 0x00001C11
.word 0x00001C14, 0x00001C14
.word 0x00001C14, 0x00001C15
.word 0x00001C18, 0x00001C18
.word 0x00001C18, 0x00001C19
.word 0x00001C1C, 0x00001C1C
.word 0x00001C1C, 0x00001C1D
.word 0x00001C20, 0x00001C21
.word 0x00001C24, 0x00001C24
.word 0x00001C24, 0x00001C25
.word 0x00001C28, 0x00001C28
.word 0x00001C28, 0x00001C28
.word 0x00001C28, 0x00001C29
.word 0x00001C2C, 0x00001C2C
.word 0x00001C2C, 0x00001C2D
.word 0x00001C30, 0x00001C30
.word 0x00001C30, 0x00001C31
.word 0x00001C34, 0x00001C34
.word 0x00001C34, 0x00001C35
.word 0x00001C38, 0x00001C38
.word 0x00001C38, 0x00001C39
.word 0x00001C3C, 0x00001C3C
.word 0x00001C3C, 0x00001C3D
.word 0x00001C40, 0x00001C40
.word 0x00001C40, 0x00001C41
.word 0x00001C44, 0x00001C44
.word 0x00001C44, 0x00001C45
.word 0x00001C48, 0x00001C48
.word 0x00001C48, 0x00001C49
.word 0x00001C4C, 0x00001C4C
.word 0x00001C4C, 0x00001C4D
; BTNF header
.ascii "BTNF"
.word 0x00000010 ; chunk size
.word 0x00000004 ; offset to first dir
.short 0 ; first file
.short 1 ; number of directories
; GMIF header
.ascii "GMIF"
.word 0x00001C58 ; chunk size
.incbin "baserom.nds", 0xF52DF4, 0x1
.incbin "baserom.nds", 0xF52DF8, 0x1
.incbin "baserom.nds", 0xF52DFC, 0x1
.incbin "baserom.nds", 0xF52E00, 0x1
.incbin "baserom.nds", 0xF52E04, 0x1
.incbin "baserom.nds", 0xF52E08, 0x1
.incbin "baserom.nds", 0xF52E0C, 0x1
.incbin "baserom.nds", 0xF52E10, 0x1
.incbin "baserom.nds", 0xF52E14, 0x1
.incbin "baserom.nds", 0xF52E18, 0x1
.incbin "baserom.nds", 0xF52E1C, 0x1
.incbin "baserom.nds", 0xF52E20, 0x1
.incbin "baserom.nds", 0xF52E24, 0x1
.incbin "baserom.nds", 0xF52E28, 0x1
.incbin "baserom.nds", 0xF52E2C, 0x1
.incbin "baserom.nds", 0xF52E30, 0x1
.incbin "baserom.nds", 0xF52E34, 0x1
.incbin "baserom.nds", 0xF52E38, 0x1
.incbin "baserom.nds", 0xF52E3C, 0x1
.incbin "baserom.nds", 0xF52E40, 0x1
.incbin "baserom.nds", 0xF52E44, 0x1
.incbin "baserom.nds", 0xF52E48, 0x1
.incbin "baserom.nds", 0xF52E4C, 0x1
.incbin "baserom.nds", 0xF52E50, 0x1
.incbin "baserom.nds", 0xF52E54, 0x1
.incbin "baserom.nds", 0xF52E58, 0x1
.incbin "baserom.nds", 0xF52E5C, 0x1
.incbin "baserom.nds", 0xF52E60, 0x1
.incbin "baserom.nds", 0xF52E64, 0x1
.incbin "baserom.nds", 0xF52E68, 0x1
.incbin "baserom.nds", 0xF52E6C, 0x1
.incbin "baserom.nds", 0xF52E70, 0x1
.incbin "baserom.nds", 0xF52E74, 0x1
.incbin "baserom.nds", 0xF52E78, 0x1
.incbin "baserom.nds", 0xF52E7C, 0x1
.incbin "baserom.nds", 0xF52E80, 0x1
.incbin "baserom.nds", 0xF52E84, 0x1
.incbin "baserom.nds", 0xF52E88, 0x1
.incbin "baserom.nds", 0xF52E8C, 0x1
.incbin "baserom.nds", 0xF52E90, 0x1
.incbin "baserom.nds", 0xF52E94, 0x1
.incbin "baserom.nds", 0xF52E98, 0x1
.incbin "baserom.nds", 0xF52E9C, 0x1
.incbin "baserom.nds", 0xF52EA0, 0x1
.incbin "baserom.nds", 0xF52EA4, 0x1
.incbin "baserom.nds", 0xF52EA8, 0x1
.incbin "baserom.nds", 0xF52EAC, 0x1
.incbin "baserom.nds", 0xF52EB0, 0x1
.incbin "baserom.nds", 0xF52EB4, 0x1
.incbin "baserom.nds", 0xF52EB8, 0x1
.incbin "baserom.nds", 0xF52EBC, 0x1
.incbin "baserom.nds", 0xF52EC0, 0x1
.incbin "baserom.nds", 0xF52EC4, 0x1
.incbin "baserom.nds", 0xF52EC8, 0x1
.incbin "baserom.nds", 0xF52ECC, 0x1
.incbin "baserom.nds", 0xF52ED0, 0x1
.incbin "baserom.nds", 0xF52ED4, 0x1
.incbin "baserom.nds", 0xF52ED8, 0x1
.incbin "baserom.nds", 0xF52EDC, 0x1
.incbin "baserom.nds", 0xF52EE0, 0x1
.incbin "baserom.nds", 0xF52EE4, 0x1
.incbin "baserom.nds", 0xF52EE8, 0x1
.incbin "baserom.nds", 0xF52EEC, 0x1
.incbin "baserom.nds", 0xF52EF0, 0x1
.incbin "baserom.nds", 0xF52EF4, 0x1
.incbin "baserom.nds", 0xF52EF8, 0x1
.incbin "baserom.nds", 0xF52EFC, 0x1
.incbin "baserom.nds", 0xF52F00, 0x1
.incbin "baserom.nds", 0xF52F04, 0x1
.incbin "baserom.nds", 0xF52F08, 0x1
.incbin "baserom.nds", 0xF52F0C, 0x1
.incbin "baserom.nds", 0xF52F10, 0x1
.incbin "baserom.nds", 0xF52F14, 0x1
.incbin "baserom.nds", 0xF52F18, 0x1
.incbin "baserom.nds", 0xF52F1C, 0x1
.incbin "baserom.nds", 0xF52F20, 0x1
.incbin "baserom.nds", 0xF52F24, 0x1
.incbin "baserom.nds", 0xF52F28, 0x1
.incbin "baserom.nds", 0xF52F2C, 0x1
.incbin "baserom.nds", 0xF52F30, 0x1
.incbin "baserom.nds", 0xF52F34, 0x1
.incbin "baserom.nds", 0xF52F38, 0x1
.incbin "baserom.nds", 0xF52F3C, 0x1
.incbin "baserom.nds", 0xF52F40, 0x1
.incbin "baserom.nds", 0xF52F44, 0x1
.incbin "baserom.nds", 0xF52F48, 0x1
.incbin "baserom.nds", 0xF52F4C, 0x1
.incbin "baserom.nds", 0xF52F50, 0x1
.incbin "baserom.nds", 0xF52F54, 0x1
.incbin "baserom.nds", 0xF52F58, 0x1
.incbin "baserom.nds", 0xF52F5C, 0x1
.incbin "baserom.nds", 0xF52F60, 0x1
.incbin "baserom.nds", 0xF52F64, 0x1
.incbin "baserom.nds", 0xF52F68, 0x1
.incbin "baserom.nds", 0xF52F6C, 0x1
.incbin "baserom.nds", 0xF52F70, 0x1
.incbin "baserom.nds", 0xF52F74, 0x1
.incbin "baserom.nds", 0xF52F78, 0x1
.incbin "baserom.nds", 0xF52F7C, 0x1
.incbin "baserom.nds", 0xF52F80, 0x1
.incbin "baserom.nds", 0xF52F84, 0x1
.incbin "baserom.nds", 0xF52F88, 0x1
.incbin "baserom.nds", 0xF52F8C, 0x1
.incbin "baserom.nds", 0xF52F90, 0x1
.incbin "baserom.nds", 0xF52F94, 0x1
.incbin "baserom.nds", 0xF52F98, 0x1
.incbin "baserom.nds", 0xF52F9C, 0x1
.incbin "baserom.nds", 0xF52FA0, 0x1
.incbin "baserom.nds", 0xF52FA4, 0x1
.incbin "baserom.nds", 0xF52FA8, 0x1
.incbin "baserom.nds", 0xF52FAC, 0x1
.incbin "baserom.nds", 0xF52FB0, 0x1
.incbin "baserom.nds", 0xF52FB4, 0x1
.incbin "baserom.nds", 0xF52FB8, 0x1
.incbin "baserom.nds", 0xF52FBC, 0x1
.incbin "baserom.nds", 0xF52FC0, 0x1
.incbin "baserom.nds", 0xF52FC4, 0x1
.incbin "baserom.nds", 0xF52FC8, 0x0
.incbin "baserom.nds", 0xF52FC8, 0x1
.incbin "baserom.nds", 0xF52FCC, 0x0
.incbin "baserom.nds", 0xF52FCC, 0x1
.incbin "baserom.nds", 0xF52FD0, 0x0
.incbin "baserom.nds", 0xF52FD0, 0x1
.incbin "baserom.nds", 0xF52FD4, 0x0
.incbin "baserom.nds", 0xF52FD4, 0x1
.incbin "baserom.nds", 0xF52FD8, 0x0
.incbin "baserom.nds", 0xF52FD8, 0x1
.incbin "baserom.nds", 0xF52FDC, 0x0
.incbin "baserom.nds", 0xF52FDC, 0x0
.incbin "baserom.nds", 0xF52FDC, 0x1
.incbin "baserom.nds", 0xF52FE0, 0x0
.incbin "baserom.nds", 0xF52FE0, 0x1
.incbin "baserom.nds", 0xF52FE4, 0x0
.incbin "baserom.nds", 0xF52FE4, 0x1
.incbin "baserom.nds", 0xF52FE8, 0x0
.incbin "baserom.nds", 0xF52FE8, 0x1
.incbin "baserom.nds", 0xF52FEC, 0x0
.incbin "baserom.nds", 0xF52FEC, 0x1
.incbin "baserom.nds", 0xF52FF0, 0x0
.incbin "baserom.nds", 0xF52FF0, 0x1
.incbin "baserom.nds", 0xF52FF4, 0x1
.incbin "baserom.nds", 0xF52FF8, 0x1
.incbin "baserom.nds", 0xF52FFC, 0x1
.incbin "baserom.nds", 0xF53000, 0x1
.incbin "baserom.nds", 0xF53004, 0x1
.incbin "baserom.nds", 0xF53008, 0x1
.incbin "baserom.nds", 0xF5300C, 0x1
.incbin "baserom.nds", 0xF53010, 0x1
.incbin "baserom.nds", 0xF53014, 0x1
.incbin "baserom.nds", 0xF53018, 0x1
.incbin "baserom.nds", 0xF5301C, 0x1
.incbin "baserom.nds", 0xF53020, 0x1
.incbin "baserom.nds", 0xF53024, 0x1
.incbin "baserom.nds", 0xF53028, 0x1
.incbin "baserom.nds", 0xF5302C, 0x1
.incbin "baserom.nds", 0xF53030, 0x1
.incbin "baserom.nds", 0xF53034, 0x1
.incbin "baserom.nds", 0xF53038, 0x1
.incbin "baserom.nds", 0xF5303C, 0x1
.incbin "baserom.nds", 0xF53040, 0x1
.incbin "baserom.nds", 0xF53044, 0x1
.incbin "baserom.nds", 0xF53048, 0x1
.incbin "baserom.nds", 0xF5304C, 0x1
.incbin "baserom.nds", 0xF53050, 0x1
.incbin "baserom.nds", 0xF53054, 0x1
.incbin "baserom.nds", 0xF53058, 0x1
.incbin "baserom.nds", 0xF5305C, 0x1
.incbin "baserom.nds", 0xF53060, 0x1
.incbin "baserom.nds", 0xF53064, 0x1
.incbin "baserom.nds", 0xF53068, 0x1
.incbin "baserom.nds", 0xF5306C, 0x1
.incbin "baserom.nds", 0xF53070, 0x1
.incbin "baserom.nds", 0xF53074, 0x1
.incbin "baserom.nds", 0xF53078, 0x1
.incbin "baserom.nds", 0xF5307C, 0x1
.incbin "baserom.nds", 0xF53080, 0x1
.incbin "baserom.nds", 0xF53084, 0x1
.incbin "baserom.nds", 0xF53088, 0x1
.incbin "baserom.nds", 0xF5308C, 0x1
.incbin "baserom.nds", 0xF53090, 0x1
.incbin "baserom.nds", 0xF53094, 0x1
.incbin "baserom.nds", 0xF53098, 0x1
.incbin "baserom.nds", 0xF5309C, 0x1
.incbin "baserom.nds", 0xF530A0, 0x1
.incbin "baserom.nds", 0xF530A4, 0x1
.incbin "baserom.nds", 0xF530A8, 0x1
.incbin "baserom.nds", 0xF530AC, 0x1
.incbin "baserom.nds", 0xF530B0, 0x1
.incbin "baserom.nds", 0xF530B4, 0x1
.incbin "baserom.nds", 0xF530B8, 0x1
.incbin "baserom.nds", 0xF530BC, 0x1
.incbin "baserom.nds", 0xF530C0, 0x1
.incbin "baserom.nds", 0xF530C4, 0x1
.incbin "baserom.nds", 0xF530C8, 0x1
.incbin "baserom.nds", 0xF530CC, 0x1
.incbin "baserom.nds", 0xF530D0, 0x1
.incbin "baserom.nds", 0xF530D4, 0x1
.incbin "baserom.nds", 0xF530D8, 0x1
.incbin "baserom.nds", 0xF530DC, 0x1
.incbin "baserom.nds", 0xF530E0, 0x1
.incbin "baserom.nds", 0xF530E4, 0x1
.incbin "baserom.nds", 0xF530E8, 0x1
.incbin "baserom.nds", 0xF530EC, 0x1
.incbin "baserom.nds", 0xF530F0, 0x1
.incbin "baserom.nds", 0xF530F4, 0x1
.incbin "baserom.nds", 0xF530F8, 0x1
.incbin "baserom.nds", 0xF530FC, 0x1
.incbin "baserom.nds", 0xF53100, 0x1
.incbin "baserom.nds", 0xF53104, 0x1
.incbin "baserom.nds", 0xF53108, 0x1
.incbin "baserom.nds", 0xF5310C, 0x1
.incbin "baserom.nds", 0xF53110, 0x1
.incbin "baserom.nds", 0xF53114, 0x1
.incbin "baserom.nds", 0xF53118, 0x1
.incbin "baserom.nds", 0xF5311C, 0x1
.incbin "baserom.nds", 0xF53120, 0x1
.incbin "baserom.nds", 0xF53124, 0x1
.incbin "baserom.nds", 0xF53128, 0x1
.incbin "baserom.nds", 0xF5312C, 0x1
.incbin "baserom.nds", 0xF53130, 0x1
.incbin "baserom.nds", 0xF53134, 0x1
.incbin "baserom.nds", 0xF53138, 0x1
.incbin "baserom.nds", 0xF5313C, 0x1
.incbin "baserom.nds", 0xF53140, 0x1
.incbin "baserom.nds", 0xF53144, 0x1
.incbin "baserom.nds", 0xF53148, 0x1
.incbin "baserom.nds", 0xF5314C, 0x1
.incbin "baserom.nds", 0xF53150, 0x1
.incbin "baserom.nds", 0xF53154, 0x1
.incbin "baserom.nds", 0xF53158, 0x1
.incbin "baserom.nds", 0xF5315C, 0x1
.incbin "baserom.nds", 0xF53160, 0x1
.incbin "baserom.nds", 0xF53164, 0x1
.incbin "baserom.nds", 0xF53168, 0x1
.incbin "baserom.nds", 0xF5316C, 0x1
.incbin "baserom.nds", 0xF53170, 0x1
.incbin "baserom.nds", 0xF53174, 0x1
.incbin "baserom.nds", 0xF53178, 0x1
.incbin "baserom.nds", 0xF5317C, 0x1
.incbin "baserom.nds", 0xF53180, 0x1
.incbin "baserom.nds", 0xF53184, 0x1
.incbin "baserom.nds", 0xF53188, 0x1
.incbin "baserom.nds", 0xF5318C, 0x1
.incbin "baserom.nds", 0xF53190, 0x1
.incbin "baserom.nds", 0xF53194, 0x1
.incbin "baserom.nds", 0xF53198, 0x1
.incbin "baserom.nds", 0xF5319C, 0x1
.incbin "baserom.nds", 0xF531A0, 0x1
.incbin "baserom.nds", 0xF531A4, 0x1
.incbin "baserom.nds", 0xF531A8, 0x1
.incbin "baserom.nds", 0xF531AC, 0x1
.incbin "baserom.nds", 0xF531B0, 0x1
.incbin "baserom.nds", 0xF531B4, 0x1
.incbin "baserom.nds", 0xF531B8, 0x1
.incbin "baserom.nds", 0xF531BC, 0x1
.incbin "baserom.nds", 0xF531C0, 0x1
.incbin "baserom.nds", 0xF531C4, 0x1
.incbin "baserom.nds", 0xF531C8, 0x1
.incbin "baserom.nds", 0xF531CC, 0x1
.incbin "baserom.nds", 0xF531D0, 0x1
.incbin "baserom.nds", 0xF531D4, 0x1
.incbin "baserom.nds", 0xF531D8, 0x1
.incbin "baserom.nds", 0xF531DC, 0x1
.incbin "baserom.nds", 0xF531E0, 0x1
.incbin "baserom.nds", 0xF531E4, 0x1
.incbin "baserom.nds", 0xF531E8, 0x1
.incbin "baserom.nds", 0xF531EC, 0x1
.incbin "baserom.nds", 0xF531F0, 0x1
.incbin "baserom.nds", 0xF531F4, 0x1
.incbin "baserom.nds", 0xF531F8, 0x1
.incbin "baserom.nds", 0xF531FC, 0x1
.incbin "baserom.nds", 0xF53200, 0x1
.incbin "baserom.nds", 0xF53204, 0x1
.incbin "baserom.nds", 0xF53208, 0x1
.incbin "baserom.nds", 0xF5320C, 0x1
.incbin "baserom.nds", 0xF53210, 0x1
.incbin "baserom.nds", 0xF53214, 0x1
.incbin "baserom.nds", 0xF53218, 0x1
.incbin "baserom.nds", 0xF5321C, 0x1
.incbin "baserom.nds", 0xF53220, 0x1
.incbin "baserom.nds", 0xF53224, 0x1
.incbin "baserom.nds", 0xF53228, 0x1
.incbin "baserom.nds", 0xF5322C, 0x1
.incbin "baserom.nds", 0xF53230, 0x1
.incbin "baserom.nds", 0xF53234, 0x1
.incbin "baserom.nds", 0xF53238, 0x1
.incbin "baserom.nds", 0xF5323C, 0x1
.incbin "baserom.nds", 0xF53240, 0x1
.incbin "baserom.nds", 0xF53244, 0x1
.incbin "baserom.nds", 0xF53248, 0x1
.incbin "baserom.nds", 0xF5324C, 0x1
.incbin "baserom.nds", 0xF53250, 0x1
.incbin "baserom.nds", 0xF53254, 0x1
.incbin "baserom.nds", 0xF53258, 0x1
.incbin "baserom.nds", 0xF5325C, 0x1
.incbin "baserom.nds", 0xF53260, 0x1
.incbin "baserom.nds", 0xF53264, 0x1
.incbin "baserom.nds", 0xF53268, 0x1
.incbin "baserom.nds", 0xF5326C, 0x1
.incbin "baserom.nds", 0xF53270, 0x1
.incbin "baserom.nds", 0xF53274, 0x1
.incbin "baserom.nds", 0xF53278, 0x1
.incbin "baserom.nds", 0xF5327C, 0x1
.incbin "baserom.nds", 0xF53280, 0x1
.incbin "baserom.nds", 0xF53284, 0x1
.incbin "baserom.nds", 0xF53288, 0x1
.incbin "baserom.nds", 0xF5328C, 0x1
.incbin "baserom.nds", 0xF53290, 0x1
.incbin "baserom.nds", 0xF53294, 0x1
.incbin "baserom.nds", 0xF53298, 0x1
.incbin "baserom.nds", 0xF5329C, 0x1
.incbin "baserom.nds", 0xF532A0, 0x1
.incbin "baserom.nds", 0xF532A4, 0x1
.incbin "baserom.nds", 0xF532A8, 0x1
.incbin "baserom.nds", 0xF532AC, 0x1
.incbin "baserom.nds", 0xF532B0, 0x1
.incbin "baserom.nds", 0xF532B4, 0x1
.incbin "baserom.nds", 0xF532B8, 0x1
.incbin "baserom.nds", 0xF532BC, 0x1
.incbin "baserom.nds", 0xF532C0, 0x1
.incbin "baserom.nds", 0xF532C4, 0x1
.incbin "baserom.nds", 0xF532C8, 0x1
.incbin "baserom.nds", 0xF532CC, 0x1
.incbin "baserom.nds", 0xF532D0, 0x1
.incbin "baserom.nds", 0xF532D4, 0x0
.incbin "baserom.nds", 0xF532D4, 0x1
.incbin "baserom.nds", 0xF532D8, 0x0
.incbin "baserom.nds", 0xF532D8, 0x1
.incbin "baserom.nds", 0xF532DC, 0x0
.incbin "baserom.nds", 0xF532DC, 0x1
.incbin "baserom.nds", 0xF532E0, 0x0
.incbin "baserom.nds", 0xF532E0, 0x1
.incbin "baserom.nds", 0xF532E4, 0x1
.incbin "baserom.nds", 0xF532E8, 0x1
.incbin "baserom.nds", 0xF532EC, 0x1
.incbin "baserom.nds", 0xF532F0, 0x1
.incbin "baserom.nds", 0xF532F4, 0x1
.incbin "baserom.nds", 0xF532F8, 0x1
.incbin "baserom.nds", 0xF532FC, 0x1
.incbin "baserom.nds", 0xF53300, 0x1
.incbin "baserom.nds", 0xF53304, 0x1
.incbin "baserom.nds", 0xF53308, 0x1
.incbin "baserom.nds", 0xF5330C, 0x1
.incbin "baserom.nds", 0xF53310, 0x1
.incbin "baserom.nds", 0xF53314, 0x1
.incbin "baserom.nds", 0xF53318, 0x1
.incbin "baserom.nds", 0xF5331C, 0x1
.incbin "baserom.nds", 0xF53320, 0x1
.incbin "baserom.nds", 0xF53324, 0x1
.incbin "baserom.nds", 0xF53328, 0x1
.incbin "baserom.nds", 0xF5332C, 0x1
.incbin "baserom.nds", 0xF53330, 0x1
.incbin "baserom.nds", 0xF53334, 0x1
.incbin "baserom.nds", 0xF53338, 0x1
.incbin "baserom.nds", 0xF5333C, 0x1
.incbin "baserom.nds", 0xF53340, 0x1
.incbin "baserom.nds", 0xF53344, 0x1
.incbin "baserom.nds", 0xF53348, 0x1
.incbin "baserom.nds", 0xF5334C, 0x1
.incbin "baserom.nds", 0xF53350, 0x1
.incbin "baserom.nds", 0xF53354, 0x1
.incbin "baserom.nds", 0xF53358, 0x1
.incbin "baserom.nds", 0xF5335C, 0x1
.incbin "baserom.nds", 0xF53360, 0x1
.incbin "baserom.nds", 0xF53364, 0x1
.incbin "baserom.nds", 0xF53368, 0x1
.incbin "baserom.nds", 0xF5336C, 0x1
.incbin "baserom.nds", 0xF53370, 0x1
.incbin "baserom.nds", 0xF53374, 0x1
.incbin "baserom.nds", 0xF53378, 0x1
.incbin "baserom.nds", 0xF5337C, 0x1
.incbin "baserom.nds", 0xF53380, 0x1
.incbin "baserom.nds", 0xF53384, 0x1
.incbin "baserom.nds", 0xF53388, 0x1
.incbin "baserom.nds", 0xF5338C, 0x1
.incbin "baserom.nds", 0xF53390, 0x1
.incbin "baserom.nds", 0xF53394, 0x1
.incbin "baserom.nds", 0xF53398, 0x1
.incbin "baserom.nds", 0xF5339C, 0x1
.incbin "baserom.nds", 0xF533A0, 0x1
.incbin "baserom.nds", 0xF533A4, 0x1
.incbin "baserom.nds", 0xF533A8, 0x1
.incbin "baserom.nds", 0xF533AC, 0x1
.incbin "baserom.nds", 0xF533B0, 0x1
.incbin "baserom.nds", 0xF533B4, 0x1
.incbin "baserom.nds", 0xF533B8, 0x1
.incbin "baserom.nds", 0xF533BC, 0x1
.incbin "baserom.nds", 0xF533C0, 0x1
.incbin "baserom.nds", 0xF533C4, 0x1
.incbin "baserom.nds", 0xF533C8, 0x1
.incbin "baserom.nds", 0xF533CC, 0x1
.incbin "baserom.nds", 0xF533D0, 0x1
.incbin "baserom.nds", 0xF533D4, 0x1
.incbin "baserom.nds", 0xF533D8, 0x1
.incbin "baserom.nds", 0xF533DC, 0x1
.incbin "baserom.nds", 0xF533E0, 0x1
.incbin "baserom.nds", 0xF533E4, 0x1
.incbin "baserom.nds", 0xF533E8, 0x1
.incbin "baserom.nds", 0xF533EC, 0x1
.incbin "baserom.nds", 0xF533F0, 0x1
.incbin "baserom.nds", 0xF533F4, 0x0
.incbin "baserom.nds", 0xF533F4, 0x1
.incbin "baserom.nds", 0xF533F8, 0x0
.incbin "baserom.nds", 0xF533F8, 0x1
.incbin "baserom.nds", 0xF533FC, 0x0
.incbin "baserom.nds", 0xF533FC, 0x1
.incbin "baserom.nds", 0xF53400, 0x0
.incbin "baserom.nds", 0xF53400, 0x1
.incbin "baserom.nds", 0xF53404, 0x1
.incbin "baserom.nds", 0xF53408, 0x1
.incbin "baserom.nds", 0xF5340C, 0x1
.incbin "baserom.nds", 0xF53410, 0x1
.incbin "baserom.nds", 0xF53414, 0x1
.incbin "baserom.nds", 0xF53418, 0x1
.incbin "baserom.nds", 0xF5341C, 0x1
.incbin "baserom.nds", 0xF53420, 0x1
.incbin "baserom.nds", 0xF53424, 0x1
.incbin "baserom.nds", 0xF53428, 0x1
.incbin "baserom.nds", 0xF5342C, 0x1
.incbin "baserom.nds", 0xF53430, 0x1
.incbin "baserom.nds", 0xF53434, 0x1
.incbin "baserom.nds", 0xF53438, 0x1
.incbin "baserom.nds", 0xF5343C, 0x1
.incbin "baserom.nds", 0xF53440, 0x1
.incbin "baserom.nds", 0xF53444, 0x0
.incbin "baserom.nds", 0xF53444, 0x1
.incbin "baserom.nds", 0xF53448, 0x0
.incbin "baserom.nds", 0xF53448, 0x1
.incbin "baserom.nds", 0xF5344C, 0x0
.incbin "baserom.nds", 0xF5344C, 0x1
.incbin "baserom.nds", 0xF53450, 0x0
.incbin "baserom.nds", 0xF53450, 0x1
.incbin "baserom.nds", 0xF53454, 0x1
.incbin "baserom.nds", 0xF53458, 0x1
.incbin "baserom.nds", 0xF5345C, 0x1
.incbin "baserom.nds", 0xF53460, 0x1
.incbin "baserom.nds", 0xF53464, 0x1
.incbin "baserom.nds", 0xF53468, 0x1
.incbin "baserom.nds", 0xF5346C, 0x1
.incbin "baserom.nds", 0xF53470, 0x1
.incbin "baserom.nds", 0xF53474, 0x1
.incbin "baserom.nds", 0xF53478, 0x1
.incbin "baserom.nds", 0xF5347C, 0x1
.incbin "baserom.nds", 0xF53480, 0x1
.incbin "baserom.nds", 0xF53484, 0x1
.incbin "baserom.nds", 0xF53488, 0x1
.incbin "baserom.nds", 0xF5348C, 0x1
.incbin "baserom.nds", 0xF53490, 0x1
.incbin "baserom.nds", 0xF53494, 0x1
.incbin "baserom.nds", 0xF53498, 0x1
.incbin "baserom.nds", 0xF5349C, 0x1
.incbin "baserom.nds", 0xF534A0, 0x1
.incbin "baserom.nds", 0xF534A4, 0x1
.incbin "baserom.nds", 0xF534A8, 0x0
.incbin "baserom.nds", 0xF534A8, 0x1
.incbin "baserom.nds", 0xF534AC, 0x0
.incbin "baserom.nds", 0xF534AC, 0x1
.incbin "baserom.nds", 0xF534B0, 0x1
.incbin "baserom.nds", 0xF534B4, 0x1
.incbin "baserom.nds", 0xF534B8, 0x1
.incbin "baserom.nds", 0xF534BC, 0x1
.incbin "baserom.nds", 0xF534C0, 0x0
.incbin "baserom.nds", 0xF534C0, 0x1
.incbin "baserom.nds", 0xF534C4, 0x0
.incbin "baserom.nds", 0xF534C4, 0x1
.incbin "baserom.nds", 0xF534C8, 0x1
.incbin "baserom.nds", 0xF534CC, 0x1
.incbin "baserom.nds", 0xF534D0, 0x1
.incbin "baserom.nds", 0xF534D4, 0x1
.incbin "baserom.nds", 0xF534D8, 0x1
.incbin "baserom.nds", 0xF534DC, 0x1
.incbin "baserom.nds", 0xF534E0, 0x1
.incbin "baserom.nds", 0xF534E4, 0x1
.incbin "baserom.nds", 0xF534E8, 0x1
.incbin "baserom.nds", 0xF534EC, 0x1
.incbin "baserom.nds", 0xF534F0, 0x1
.incbin "baserom.nds", 0xF534F4, 0x1
.incbin "baserom.nds", 0xF534F8, 0x1
.incbin "baserom.nds", 0xF534FC, 0x1
.incbin "baserom.nds", 0xF53500, 0x1
.incbin "baserom.nds", 0xF53504, 0x0
.incbin "baserom.nds", 0xF53504, 0x1
.incbin "baserom.nds", 0xF53508, 0x0
.incbin "baserom.nds", 0xF53508, 0x1
.incbin "baserom.nds", 0xF5350C, 0x0
.incbin "baserom.nds", 0xF5350C, 0x1
.incbin "baserom.nds", 0xF53510, 0x0
.incbin "baserom.nds", 0xF53510, 0x1
.incbin "baserom.nds", 0xF53514, 0x1
.incbin "baserom.nds", 0xF53518, 0x1
.incbin "baserom.nds", 0xF5351C, 0x1
.incbin "baserom.nds", 0xF53520, 0x1
.incbin "baserom.nds", 0xF53524, 0x1
.incbin "baserom.nds", 0xF53528, 0x1
.incbin "baserom.nds", 0xF5352C, 0x1
.incbin "baserom.nds", 0xF53530, 0x1
.incbin "baserom.nds", 0xF53534, 0x1
.incbin "baserom.nds", 0xF53538, 0x0
.incbin "baserom.nds", 0xF53538, 0x1
.incbin "baserom.nds", 0xF5353C, 0x0
.incbin "baserom.nds", 0xF5353C, 0x1
.incbin "baserom.nds", 0xF53540, 0x1
.incbin "baserom.nds", 0xF53544, 0x1
.incbin "baserom.nds", 0xF53548, 0x1
.incbin "baserom.nds", 0xF5354C, 0x1
.incbin "baserom.nds", 0xF53550, 0x1
.incbin "baserom.nds", 0xF53554, 0x1
.incbin "baserom.nds", 0xF53558, 0x1
.incbin "baserom.nds", 0xF5355C, 0x1
.incbin "baserom.nds", 0xF53560, 0x1
.incbin "baserom.nds", 0xF53564, 0x1
.incbin "baserom.nds", 0xF53568, 0x1
.incbin "baserom.nds", 0xF5356C, 0x0
.incbin "baserom.nds", 0xF5356C, 0x1
.incbin "baserom.nds", 0xF53570, 0x0
.incbin "baserom.nds", 0xF53570, 0x1
.incbin "baserom.nds", 0xF53574, 0x1
.incbin "baserom.nds", 0xF53578, 0x1
.incbin "baserom.nds", 0xF5357C, 0x1
.incbin "baserom.nds", 0xF53580, 0x1
.incbin "baserom.nds", 0xF53584, 0x1
.incbin "baserom.nds", 0xF53588, 0x1
.incbin "baserom.nds", 0xF5358C, 0x1
.incbin "baserom.nds", 0xF53590, 0x1
.incbin "baserom.nds", 0xF53594, 0x1
.incbin "baserom.nds", 0xF53598, 0x1
.incbin "baserom.nds", 0xF5359C, 0x1
.incbin "baserom.nds", 0xF535A0, 0x1
.incbin "baserom.nds", 0xF535A4, 0x0
.incbin "baserom.nds", 0xF535A4, 0x1
.incbin "baserom.nds", 0xF535A8, 0x0
.incbin "baserom.nds", 0xF535A8, 0x1
.incbin "baserom.nds", 0xF535AC, 0x1
.incbin "baserom.nds", 0xF535B0, 0x1
.incbin "baserom.nds", 0xF535B4, 0x1
.incbin "baserom.nds", 0xF535B8, 0x1
.incbin "baserom.nds", 0xF535BC, 0x1
.incbin "baserom.nds", 0xF535C0, 0x1
.incbin "baserom.nds", 0xF535C4, 0x1
.incbin "baserom.nds", 0xF535C8, 0x1
.incbin "baserom.nds", 0xF535CC, 0x1
.incbin "baserom.nds", 0xF535D0, 0x1
.incbin "baserom.nds", 0xF535D4, 0x1
.incbin "baserom.nds", 0xF535D8, 0x1
.incbin "baserom.nds", 0xF535DC, 0x1
.incbin "baserom.nds", 0xF535E0, 0x1
.incbin "baserom.nds", 0xF535E4, 0x1
.incbin "baserom.nds", 0xF535E8, 0x1
.incbin "baserom.nds", 0xF535EC, 0x0
.incbin "baserom.nds", 0xF535EC, 0x1
.incbin "baserom.nds", 0xF535F0, 0x0
.incbin "baserom.nds", 0xF535F0, 0x1
.incbin "baserom.nds", 0xF535F4, 0x1
.incbin "baserom.nds", 0xF535F8, 0x1
.incbin "baserom.nds", 0xF535FC, 0x1
.incbin "baserom.nds", 0xF53600, 0x1
.incbin "baserom.nds", 0xF53604, 0x1
.incbin "baserom.nds", 0xF53608, 0x1
.incbin "baserom.nds", 0xF5360C, 0x1
.incbin "baserom.nds", 0xF53610, 0x1
.incbin "baserom.nds", 0xF53614, 0x1
.incbin "baserom.nds", 0xF53618, 0x1
.incbin "baserom.nds", 0xF5361C, 0x1
.incbin "baserom.nds", 0xF53620, 0x1
.incbin "baserom.nds", 0xF53624, 0x1
.incbin "baserom.nds", 0xF53628, 0x1
.incbin "baserom.nds", 0xF5362C, 0x1
.incbin "baserom.nds", 0xF53630, 0x1
.incbin "baserom.nds", 0xF53634, 0x1
.incbin "baserom.nds", 0xF53638, 0x1
.incbin "baserom.nds", 0xF5363C, 0x1
.incbin "baserom.nds", 0xF53640, 0x1
.incbin "baserom.nds", 0xF53644, 0x1
.incbin "baserom.nds", 0xF53648, 0x1
.incbin "baserom.nds", 0xF5364C, 0x1
.incbin "baserom.nds", 0xF53650, 0x1
.incbin "baserom.nds", 0xF53654, 0x0
.incbin "baserom.nds", 0xF53654, 0x1
.incbin "baserom.nds", 0xF53658, 0x0
.incbin "baserom.nds", 0xF53658, 0x1
.incbin "baserom.nds", 0xF5365C, 0x0
.incbin "baserom.nds", 0xF5365C, 0x1
.incbin "baserom.nds", 0xF53660, 0x0
.incbin "baserom.nds", 0xF53660, 0x1
.incbin "baserom.nds", 0xF53664, 0x0
.incbin "baserom.nds", 0xF53664, 0x1
.incbin "baserom.nds", 0xF53668, 0x0
.incbin "baserom.nds", 0xF53668, 0x1
.incbin "baserom.nds", 0xF5366C, 0x1
.incbin "baserom.nds", 0xF53670, 0x1
.incbin "baserom.nds", 0xF53674, 0x1
.incbin "baserom.nds", 0xF53678, 0x1
.incbin "baserom.nds", 0xF5367C, 0x1
.incbin "baserom.nds", 0xF53680, 0x1
.incbin "baserom.nds", 0xF53684, 0x1
.incbin "baserom.nds", 0xF53688, 0x1
.incbin "baserom.nds", 0xF5368C, 0x1
.incbin "baserom.nds", 0xF53690, 0x1
.incbin "baserom.nds", 0xF53694, 0x1
.incbin "baserom.nds", 0xF53698, 0x1
.incbin "baserom.nds", 0xF5369C, 0x0
.incbin "baserom.nds", 0xF5369C, 0x1
.incbin "baserom.nds", 0xF536A0, 0x0
.incbin "baserom.nds", 0xF536A0, 0x1
.incbin "baserom.nds", 0xF536A4, 0x0
.incbin "baserom.nds", 0xF536A4, 0x1
.incbin "baserom.nds", 0xF536A8, 0x0
.incbin "baserom.nds", 0xF536A8, 0x1
.incbin "baserom.nds", 0xF536AC, 0x1
.incbin "baserom.nds", 0xF536B0, 0x1
.incbin "baserom.nds", 0xF536B4, 0x1
.incbin "baserom.nds", 0xF536B8, 0x1
.incbin "baserom.nds", 0xF536BC, 0x1
.incbin "baserom.nds", 0xF536C0, 0x1
.incbin "baserom.nds", 0xF536C4, 0x1
.incbin "baserom.nds", 0xF536C8, 0x1
.incbin "baserom.nds", 0xF536CC, 0x1
.incbin "baserom.nds", 0xF536D0, 0x1
.incbin "baserom.nds", 0xF536D4, 0x1
.incbin "baserom.nds", 0xF536D8, 0x1
.incbin "baserom.nds", 0xF536DC, 0x1
.incbin "baserom.nds", 0xF536E0, 0x1
.incbin "baserom.nds", 0xF536E4, 0x1
.incbin "baserom.nds", 0xF536E8, 0x1
.incbin "baserom.nds", 0xF536EC, 0x1
.incbin "baserom.nds", 0xF536F0, 0x1
.incbin "baserom.nds", 0xF536F4, 0x1
.incbin "baserom.nds", 0xF536F8, 0x1
.incbin "baserom.nds", 0xF536FC, 0x1
.incbin "baserom.nds", 0xF53700, 0x1
.incbin "baserom.nds", 0xF53704, 0x1
.incbin "baserom.nds", 0xF53708, 0x1
.incbin "baserom.nds", 0xF5370C, 0x1
.incbin "baserom.nds", 0xF53710, 0x1
.incbin "baserom.nds", 0xF53714, 0x1
.incbin "baserom.nds", 0xF53718, 0x1
.incbin "baserom.nds", 0xF5371C, 0x1
.incbin "baserom.nds", 0xF53720, 0x1
.incbin "baserom.nds", 0xF53724, 0x1
.incbin "baserom.nds", 0xF53728, 0x1
.incbin "baserom.nds", 0xF5372C, 0x1
.incbin "baserom.nds", 0xF53730, 0x1
.incbin "baserom.nds", 0xF53734, 0x1
.incbin "baserom.nds", 0xF53738, 0x1
.incbin "baserom.nds", 0xF5373C, 0x1
.incbin "baserom.nds", 0xF53740, 0x1
.incbin "baserom.nds", 0xF53744, 0x1
.incbin "baserom.nds", 0xF53748, 0x1
.incbin "baserom.nds", 0xF5374C, 0x1
.incbin "baserom.nds", 0xF53750, 0x1
.incbin "baserom.nds", 0xF53754, 0x1
.incbin "baserom.nds", 0xF53758, 0x1
.incbin "baserom.nds", 0xF5375C, 0x1
.incbin "baserom.nds", 0xF53760, 0x1
.incbin "baserom.nds", 0xF53764, 0x1
.incbin "baserom.nds", 0xF53768, 0x1
.incbin "baserom.nds", 0xF5376C, 0x1
.incbin "baserom.nds", 0xF53770, 0x1
.incbin "baserom.nds", 0xF53774, 0x1
.incbin "baserom.nds", 0xF53778, 0x1
.incbin "baserom.nds", 0xF5377C, 0x1
.incbin "baserom.nds", 0xF53780, 0x1
.incbin "baserom.nds", 0xF53784, 0x1
.incbin "baserom.nds", 0xF53788, 0x1
.incbin "baserom.nds", 0xF5378C, 0x1
.incbin "baserom.nds", 0xF53790, 0x1
.incbin "baserom.nds", 0xF53794, 0x1
.incbin "baserom.nds", 0xF53798, 0x1
.incbin "baserom.nds", 0xF5379C, 0x1
.incbin "baserom.nds", 0xF537A0, 0x1
.incbin "baserom.nds", 0xF537A4, 0x1
.incbin "baserom.nds", 0xF537A8, 0x1
.incbin "baserom.nds", 0xF537AC, 0x1
.incbin "baserom.nds", 0xF537B0, 0x1
.incbin "baserom.nds", 0xF537B4, 0x1
.incbin "baserom.nds", 0xF537B8, 0x1
.incbin "baserom.nds", 0xF537BC, 0x1
.incbin "baserom.nds", 0xF537C0, 0x1
.incbin "baserom.nds", 0xF537C4, 0x1
.incbin "baserom.nds", 0xF537C8, 0x1
.incbin "baserom.nds", 0xF537CC, 0x1
.incbin "baserom.nds", 0xF537D0, 0x1
.incbin "baserom.nds", 0xF537D4, 0x1
.incbin "baserom.nds", 0xF537D8, 0x1
.incbin "baserom.nds", 0xF537DC, 0x1
.incbin "baserom.nds", 0xF537E0, 0x1
.incbin "baserom.nds", 0xF537E4, 0x1
.incbin "baserom.nds", 0xF537E8, 0x1
.incbin "baserom.nds", 0xF537EC, 0x1
.incbin "baserom.nds", 0xF537F0, 0x1
.incbin "baserom.nds", 0xF537F4, 0x1
.incbin "baserom.nds", 0xF537F8, 0x1
.incbin "baserom.nds", 0xF537FC, 0x1
.incbin "baserom.nds", 0xF53800, 0x1
.incbin "baserom.nds", 0xF53804, 0x1
.incbin "baserom.nds", 0xF53808, 0x1
.incbin "baserom.nds", 0xF5380C, 0x1
.incbin "baserom.nds", 0xF53810, 0x1
.incbin "baserom.nds", 0xF53814, 0x1
.incbin "baserom.nds", 0xF53818, 0x1
.incbin "baserom.nds", 0xF5381C, 0x1
.incbin "baserom.nds", 0xF53820, 0x1
.incbin "baserom.nds", 0xF53824, 0x1
.incbin "baserom.nds", 0xF53828, 0x1
.incbin "baserom.nds", 0xF5382C, 0x1
.incbin "baserom.nds", 0xF53830, 0x1
.incbin "baserom.nds", 0xF53834, 0x1
.incbin "baserom.nds", 0xF53838, 0x1
.incbin "baserom.nds", 0xF5383C, 0x1
.incbin "baserom.nds", 0xF53840, 0x1
.incbin "baserom.nds", 0xF53844, 0x1
.incbin "baserom.nds", 0xF53848, 0x1
.incbin "baserom.nds", 0xF5384C, 0x1
.incbin "baserom.nds", 0xF53850, 0x1
.incbin "baserom.nds", 0xF53854, 0x1
.incbin "baserom.nds", 0xF53858, 0x1
.incbin "baserom.nds", 0xF5385C, 0x1
.incbin "baserom.nds", 0xF53860, 0x1
.incbin "baserom.nds", 0xF53864, 0x1
.incbin "baserom.nds", 0xF53868, 0x1
.incbin "baserom.nds", 0xF5386C, 0x1
.incbin "baserom.nds", 0xF53870, 0x1
.incbin "baserom.nds", 0xF53874, 0x1
.incbin "baserom.nds", 0xF53878, 0x1
.incbin "baserom.nds", 0xF5387C, 0x1
.incbin "baserom.nds", 0xF53880, 0x1
.incbin "baserom.nds", 0xF53884, 0x1
.incbin "baserom.nds", 0xF53888, 0x1
.incbin "baserom.nds", 0xF5388C, 0x1
.incbin "baserom.nds", 0xF53890, 0x1
.incbin "baserom.nds", 0xF53894, 0x1
.incbin "baserom.nds", 0xF53898, 0x1
.incbin "baserom.nds", 0xF5389C, 0x1
.incbin "baserom.nds", 0xF538A0, 0x1
.incbin "baserom.nds", 0xF538A4, 0x1
.incbin "baserom.nds", 0xF538A8, 0x1
.incbin "baserom.nds", 0xF538AC, 0x1
.incbin "baserom.nds", 0xF538B0, 0x1
.incbin "baserom.nds", 0xF538B4, 0x1
.incbin "baserom.nds", 0xF538B8, 0x1
.incbin "baserom.nds", 0xF538BC, 0x1
.incbin "baserom.nds", 0xF538C0, 0x1
.incbin "baserom.nds", 0xF538C4, 0x1
.incbin "baserom.nds", 0xF538C8, 0x1
.incbin "baserom.nds", 0xF538CC, 0x1
.incbin "baserom.nds", 0xF538D0, 0x1
.incbin "baserom.nds", 0xF538D4, 0x1
.incbin "baserom.nds", 0xF538D8, 0x1
.incbin "baserom.nds", 0xF538DC, 0x1
.incbin "baserom.nds", 0xF538E0, 0x1
.incbin "baserom.nds", 0xF538E4, 0x1
.incbin "baserom.nds", 0xF538E8, 0x1
.incbin "baserom.nds", 0xF538EC, 0x1
.incbin "baserom.nds", 0xF538F0, 0x1
.incbin "baserom.nds", 0xF538F4, 0x1
.incbin "baserom.nds", 0xF538F8, 0x1
.incbin "baserom.nds", 0xF538FC, 0x1
.incbin "baserom.nds", 0xF53900, 0x1
.incbin "baserom.nds", 0xF53904, 0x1
.incbin "baserom.nds", 0xF53908, 0x1
.incbin "baserom.nds", 0xF5390C, 0x1
.incbin "baserom.nds", 0xF53910, 0x1
.incbin "baserom.nds", 0xF53914, 0x1
.incbin "baserom.nds", 0xF53918, 0x1
.incbin "baserom.nds", 0xF5391C, 0x1
.incbin "baserom.nds", 0xF53920, 0x1
.incbin "baserom.nds", 0xF53924, 0x1
.incbin "baserom.nds", 0xF53928, 0x1
.incbin "baserom.nds", 0xF5392C, 0x1
.incbin "baserom.nds", 0xF53930, 0x1
.incbin "baserom.nds", 0xF53934, 0x1
.incbin "baserom.nds", 0xF53938, 0x1
.incbin "baserom.nds", 0xF5393C, 0x1
.incbin "baserom.nds", 0xF53940, 0x1
.incbin "baserom.nds", 0xF53944, 0x1
.incbin "baserom.nds", 0xF53948, 0x1
.incbin "baserom.nds", 0xF5394C, 0x1
.incbin "baserom.nds", 0xF53950, 0x1
.incbin "baserom.nds", 0xF53954, 0x1
.incbin "baserom.nds", 0xF53958, 0x1
.incbin "baserom.nds", 0xF5395C, 0x1
.incbin "baserom.nds", 0xF53960, 0x1
.incbin "baserom.nds", 0xF53964, 0x1
.incbin "baserom.nds", 0xF53968, 0x1
.incbin "baserom.nds", 0xF5396C, 0x1
.incbin "baserom.nds", 0xF53970, 0x1
.incbin "baserom.nds", 0xF53974, 0x1
.incbin "baserom.nds", 0xF53978, 0x1
.incbin "baserom.nds", 0xF5397C, 0x1
.incbin "baserom.nds", 0xF53980, 0x1
.incbin "baserom.nds", 0xF53984, 0x1
.incbin "baserom.nds", 0xF53988, 0x1
.incbin "baserom.nds", 0xF5398C, 0x1
.incbin "baserom.nds", 0xF53990, 0x1
.incbin "baserom.nds", 0xF53994, 0x1
.incbin "baserom.nds", 0xF53998, 0x1
.incbin "baserom.nds", 0xF5399C, 0x1
.incbin "baserom.nds", 0xF539A0, 0x1
.incbin "baserom.nds", 0xF539A4, 0x1
.incbin "baserom.nds", 0xF539A8, 0x1
.incbin "baserom.nds", 0xF539AC, 0x1
.incbin "baserom.nds", 0xF539B0, 0x1
.incbin "baserom.nds", 0xF539B4, 0x1
.incbin "baserom.nds", 0xF539B8, 0x1
.incbin "baserom.nds", 0xF539BC, 0x0
.incbin "baserom.nds", 0xF539BC, 0x1
.incbin "baserom.nds", 0xF539C0, 0x0
.incbin "baserom.nds", 0xF539C0, 0x1
.incbin "baserom.nds", 0xF539C4, 0x1
.incbin "baserom.nds", 0xF539C8, 0x1
.incbin "baserom.nds", 0xF539CC, 0x1
.incbin "baserom.nds", 0xF539D0, 0x1
.incbin "baserom.nds", 0xF539D4, 0x1
.incbin "baserom.nds", 0xF539D8, 0x1
.incbin "baserom.nds", 0xF539DC, 0x1
.incbin "baserom.nds", 0xF539E0, 0x1
.incbin "baserom.nds", 0xF539E4, 0x1
.incbin "baserom.nds", 0xF539E8, 0x1
.incbin "baserom.nds", 0xF539EC, 0x1
.incbin "baserom.nds", 0xF539F0, 0x1
.incbin "baserom.nds", 0xF539F4, 0x1
.incbin "baserom.nds", 0xF539F8, 0x1
.incbin "baserom.nds", 0xF539FC, 0x1
.incbin "baserom.nds", 0xF53A00, 0x1
.incbin "baserom.nds", 0xF53A04, 0x1
.incbin "baserom.nds", 0xF53A08, 0x1
.incbin "baserom.nds", 0xF53A0C, 0x1
.incbin "baserom.nds", 0xF53A10, 0x1
.incbin "baserom.nds", 0xF53A14, 0x1
.incbin "baserom.nds", 0xF53A18, 0x1
.incbin "baserom.nds", 0xF53A1C, 0x1
.incbin "baserom.nds", 0xF53A20, 0x1
.incbin "baserom.nds", 0xF53A24, 0x1
.incbin "baserom.nds", 0xF53A28, 0x1
.incbin "baserom.nds", 0xF53A2C, 0x1
.incbin "baserom.nds", 0xF53A30, 0x1
.incbin "baserom.nds", 0xF53A34, 0x1
.incbin "baserom.nds", 0xF53A38, 0x1
.incbin "baserom.nds", 0xF53A3C, 0x1
.incbin "baserom.nds", 0xF53A40, 0x1
.incbin "baserom.nds", 0xF53A44, 0x1
.incbin "baserom.nds", 0xF53A48, 0x1
.incbin "baserom.nds", 0xF53A4C, 0x1
.incbin "baserom.nds", 0xF53A50, 0x1
.incbin "baserom.nds", 0xF53A54, 0x1
.incbin "baserom.nds", 0xF53A58, 0x1
.incbin "baserom.nds", 0xF53A5C, 0x1
.incbin "baserom.nds", 0xF53A60, 0x1
.incbin "baserom.nds", 0xF53A64, 0x1
.incbin "baserom.nds", 0xF53A68, 0x1
.incbin "baserom.nds", 0xF53A6C, 0x1
.incbin "baserom.nds", 0xF53A70, 0x1
.incbin "baserom.nds", 0xF53A74, 0x1
.incbin "baserom.nds", 0xF53A78, 0x1
.incbin "baserom.nds", 0xF53A7C, 0x1
.incbin "baserom.nds", 0xF53A80, 0x1
.incbin "baserom.nds", 0xF53A84, 0x1
.incbin "baserom.nds", 0xF53A88, 0x1
.incbin "baserom.nds", 0xF53A8C, 0x1
.incbin "baserom.nds", 0xF53A90, 0x1
.incbin "baserom.nds", 0xF53A94, 0x1
.incbin "baserom.nds", 0xF53A98, 0x1
.incbin "baserom.nds", 0xF53A9C, 0x1
.incbin "baserom.nds", 0xF53AA0, 0x1
.incbin "baserom.nds", 0xF53AA4, 0x1
.incbin "baserom.nds", 0xF53AA8, 0x1
.incbin "baserom.nds", 0xF53AAC, 0x1
.incbin "baserom.nds", 0xF53AB0, 0x1
.incbin "baserom.nds", 0xF53AB4, 0x1
.incbin "baserom.nds", 0xF53AB8, 0x1
.incbin "baserom.nds", 0xF53ABC, 0x1
.incbin "baserom.nds", 0xF53AC0, 0x1
.incbin "baserom.nds", 0xF53AC4, 0x1
.incbin "baserom.nds", 0xF53AC8, 0x1
.incbin "baserom.nds", 0xF53ACC, 0x1
.incbin "baserom.nds", 0xF53AD0, 0x1
.incbin "baserom.nds", 0xF53AD4, 0x1
.incbin "baserom.nds", 0xF53AD8, 0x1
.incbin "baserom.nds", 0xF53ADC, 0x1
.incbin "baserom.nds", 0xF53AE0, 0x1
.incbin "baserom.nds", 0xF53AE4, 0x1
.incbin "baserom.nds", 0xF53AE8, 0x1
.incbin "baserom.nds", 0xF53AEC, 0x1
.incbin "baserom.nds", 0xF53AF0, 0x1
.incbin "baserom.nds", 0xF53AF4, 0x1
.incbin "baserom.nds", 0xF53AF8, 0x1
.incbin "baserom.nds", 0xF53AFC, 0x1
.incbin "baserom.nds", 0xF53B00, 0x1
.incbin "baserom.nds", 0xF53B04, 0x1
.incbin "baserom.nds", 0xF53B08, 0x1
.incbin "baserom.nds", 0xF53B0C, 0x1
.incbin "baserom.nds", 0xF53B10, 0x1
.incbin "baserom.nds", 0xF53B14, 0x1
.incbin "baserom.nds", 0xF53B18, 0x1
.incbin "baserom.nds", 0xF53B1C, 0x1
.incbin "baserom.nds", 0xF53B20, 0x1
.incbin "baserom.nds", 0xF53B24, 0x1
.incbin "baserom.nds", 0xF53B28, 0x1
.incbin "baserom.nds", 0xF53B2C, 0x1
.incbin "baserom.nds", 0xF53B30, 0x1
.incbin "baserom.nds", 0xF53B34, 0x1
.incbin "baserom.nds", 0xF53B38, 0x1
.incbin "baserom.nds", 0xF53B3C, 0x1
.incbin "baserom.nds", 0xF53B40, 0x1
.incbin "baserom.nds", 0xF53B44, 0x1
.incbin "baserom.nds", 0xF53B48, 0x1
.incbin "baserom.nds", 0xF53B4C, 0x1
.incbin "baserom.nds", 0xF53B50, 0x1
.incbin "baserom.nds", 0xF53B54, 0x1
.incbin "baserom.nds", 0xF53B58, 0x1
.incbin "baserom.nds", 0xF53B5C, 0x1
.incbin "baserom.nds", 0xF53B60, 0x1
.incbin "baserom.nds", 0xF53B64, 0x1
.incbin "baserom.nds", 0xF53B68, 0x1
.incbin "baserom.nds", 0xF53B6C, 0x1
.incbin "baserom.nds", 0xF53B70, 0x1
.incbin "baserom.nds", 0xF53B74, 0x1
.incbin "baserom.nds", 0xF53B78, 0x1
.incbin "baserom.nds", 0xF53B7C, 0x1
.incbin "baserom.nds", 0xF53B80, 0x1
.incbin "baserom.nds", 0xF53B84, 0x1
.incbin "baserom.nds", 0xF53B88, 0x1
.incbin "baserom.nds", 0xF53B8C, 0x1
.incbin "baserom.nds", 0xF53B90, 0x1
.incbin "baserom.nds", 0xF53B94, 0x1
.incbin "baserom.nds", 0xF53B98, 0x1
.incbin "baserom.nds", 0xF53B9C, 0x1
.incbin "baserom.nds", 0xF53BA0, 0x1
.incbin "baserom.nds", 0xF53BA4, 0x1
.incbin "baserom.nds", 0xF53BA8, 0x1
.incbin "baserom.nds", 0xF53BAC, 0x1
.incbin "baserom.nds", 0xF53BB0, 0x1
.incbin "baserom.nds", 0xF53BB4, 0x0
.incbin "baserom.nds", 0xF53BB4, 0x1
.incbin "baserom.nds", 0xF53BB8, 0x0
.incbin "baserom.nds", 0xF53BB8, 0x1
.incbin "baserom.nds", 0xF53BBC, 0x1
.incbin "baserom.nds", 0xF53BC0, 0x1
.incbin "baserom.nds", 0xF53BC4, 0x1
.incbin "baserom.nds", 0xF53BC8, 0x1
.incbin "baserom.nds", 0xF53BCC, 0x1
.incbin "baserom.nds", 0xF53BD0, 0x1
.incbin "baserom.nds", 0xF53BD4, 0x1
.incbin "baserom.nds", 0xF53BD8, 0x1
.incbin "baserom.nds", 0xF53BDC, 0x0
.incbin "baserom.nds", 0xF53BDC, 0x1
.incbin "baserom.nds", 0xF53BE0, 0x0
.incbin "baserom.nds", 0xF53BE0, 0x1
.incbin "baserom.nds", 0xF53BE4, 0x0
.incbin "baserom.nds", 0xF53BE4, 0x1
.incbin "baserom.nds", 0xF53BE8, 0x0
.incbin "baserom.nds", 0xF53BE8, 0x1
.incbin "baserom.nds", 0xF53BEC, 0x1
.incbin "baserom.nds", 0xF53BF0, 0x0
.incbin "baserom.nds", 0xF53BF0, 0x1
.incbin "baserom.nds", 0xF53BF4, 0x0
.incbin "baserom.nds", 0xF53BF4, 0x1
.incbin "baserom.nds", 0xF53BF8, 0x1
.incbin "baserom.nds", 0xF53BFC, 0x1
.incbin "baserom.nds", 0xF53C00, 0x1
.incbin "baserom.nds", 0xF53C04, 0x1
.incbin "baserom.nds", 0xF53C08, 0x1
.incbin "baserom.nds", 0xF53C0C, 0x1
.incbin "baserom.nds", 0xF53C10, 0x1
.incbin "baserom.nds", 0xF53C14, 0x1
.incbin "baserom.nds", 0xF53C18, 0x0
.incbin "baserom.nds", 0xF53C18, 0x1
.incbin "baserom.nds", 0xF53C1C, 0x0
.incbin "baserom.nds", 0xF53C1C, 0x1
.incbin "baserom.nds", 0xF53C20, 0x0
.incbin "baserom.nds", 0xF53C20, 0x1
.incbin "baserom.nds", 0xF53C24, 0x0
.incbin "baserom.nds", 0xF53C24, 0x0
.incbin "baserom.nds", 0xF53C24, 0x1
.incbin "baserom.nds", 0xF53C28, 0x0
.incbin "baserom.nds", 0xF53C28, 0x1
.incbin "baserom.nds", 0xF53C2C, 0x0
.incbin "baserom.nds", 0xF53C2C, 0x1
.incbin "baserom.nds", 0xF53C30, 0x0
.incbin "baserom.nds", 0xF53C30, 0x1
.incbin "baserom.nds", 0xF53C34, 0x0
.incbin "baserom.nds", 0xF53C34, 0x1
.incbin "baserom.nds", 0xF53C38, 0x0
.incbin "baserom.nds", 0xF53C38, 0x1
.incbin "baserom.nds", 0xF53C3C, 0x1
.incbin "baserom.nds", 0xF53C40, 0x1
.incbin "baserom.nds", 0xF53C44, 0x1
.incbin "baserom.nds", 0xF53C48, 0x1
.incbin "baserom.nds", 0xF53C4C, 0x1
.incbin "baserom.nds", 0xF53C50, 0x1
.incbin "baserom.nds", 0xF53C54, 0x1
.incbin "baserom.nds", 0xF53C58, 0x1
.incbin "baserom.nds", 0xF53C5C, 0x1
.incbin "baserom.nds", 0xF53C60, 0x1
.incbin "baserom.nds", 0xF53C64, 0x1
.incbin "baserom.nds", 0xF53C68, 0x1
.incbin "baserom.nds", 0xF53C6C, 0x0
.incbin "baserom.nds", 0xF53C6C, 0x1
.incbin "baserom.nds", 0xF53C70, 0x0
.incbin "baserom.nds", 0xF53C70, 0x1
.incbin "baserom.nds", 0xF53C74, 0x0
.incbin "baserom.nds", 0xF53C74, 0x1
.incbin "baserom.nds", 0xF53C78, 0x0
.incbin "baserom.nds", 0xF53C78, 0x1
.incbin "baserom.nds", 0xF53C7C, 0x0
.incbin "baserom.nds", 0xF53C7C, 0x1
.incbin "baserom.nds", 0xF53C80, 0x0
.incbin "baserom.nds", 0xF53C80, 0x1
.incbin "baserom.nds", 0xF53C84, 0x1
.incbin "baserom.nds", 0xF53C88, 0x1
.incbin "baserom.nds", 0xF53C8C, 0x1
.incbin "baserom.nds", 0xF53C90, 0x1
.incbin "baserom.nds", 0xF53C94, 0x1
.incbin "baserom.nds", 0xF53C98, 0x1
.incbin "baserom.nds", 0xF53C9C, 0x1
.incbin "baserom.nds", 0xF53CA0, 0x1
.incbin "baserom.nds", 0xF53CA4, 0x1
.incbin "baserom.nds", 0xF53CA8, 0x1
.incbin "baserom.nds", 0xF53CAC, 0x1
.incbin "baserom.nds", 0xF53CB0, 0x1
.incbin "baserom.nds", 0xF53CB4, 0x1
.incbin "baserom.nds", 0xF53CB8, 0x1
.incbin "baserom.nds", 0xF53CBC, 0x1
.incbin "baserom.nds", 0xF53CC0, 0x1
.incbin "baserom.nds", 0xF53CC4, 0x1
.incbin "baserom.nds", 0xF53CC8, 0x1
.incbin "baserom.nds", 0xF53CCC, 0x1
.incbin "baserom.nds", 0xF53CD0, 0x1
.incbin "baserom.nds", 0xF53CD4, 0x1
.incbin "baserom.nds", 0xF53CD8, 0x1
.incbin "baserom.nds", 0xF53CDC, 0x1
.incbin "baserom.nds", 0xF53CE0, 0x1
.incbin "baserom.nds", 0xF53CE4, 0x1
.incbin "baserom.nds", 0xF53CE8, 0x1
.incbin "baserom.nds", 0xF53CEC, 0x1
.incbin "baserom.nds", 0xF53CF0, 0x1
.incbin "baserom.nds", 0xF53CF4, 0x1
.incbin "baserom.nds", 0xF53CF8, 0x1
.incbin "baserom.nds", 0xF53CFC, 0x1
.incbin "baserom.nds", 0xF53D00, 0x1
.incbin "baserom.nds", 0xF53D04, 0x1
.incbin "baserom.nds", 0xF53D08, 0x1
.incbin "baserom.nds", 0xF53D0C, 0x1
.incbin "baserom.nds", 0xF53D10, 0x1
.incbin "baserom.nds", 0xF53D14, 0x1
.incbin "baserom.nds", 0xF53D18, 0x1
.incbin "baserom.nds", 0xF53D1C, 0x1
.incbin "baserom.nds", 0xF53D20, 0x1
.incbin "baserom.nds", 0xF53D24, 0x1
.incbin "baserom.nds", 0xF53D28, 0x1
.incbin "baserom.nds", 0xF53D2C, 0x1
.incbin "baserom.nds", 0xF53D30, 0x1
.incbin "baserom.nds", 0xF53D34, 0x1
.incbin "baserom.nds", 0xF53D38, 0x1
.incbin "baserom.nds", 0xF53D3C, 0x1
.incbin "baserom.nds", 0xF53D40, 0x1
.incbin "baserom.nds", 0xF53D44, 0x1
.incbin "baserom.nds", 0xF53D48, 0x1
.incbin "baserom.nds", 0xF53D4C, 0x1
.incbin "baserom.nds", 0xF53D50, 0x1
.incbin "baserom.nds", 0xF53D54, 0x1
.incbin "baserom.nds", 0xF53D58, 0x1
.incbin "baserom.nds", 0xF53D5C, 0x1
.incbin "baserom.nds", 0xF53D60, 0x1
.incbin "baserom.nds", 0xF53D64, 0x1
.incbin "baserom.nds", 0xF53D68, 0x1
.incbin "baserom.nds", 0xF53D6C, 0x1
.incbin "baserom.nds", 0xF53D70, 0x1
.incbin "baserom.nds", 0xF53D74, 0x1
.incbin "baserom.nds", 0xF53D78, 0x1
.incbin "baserom.nds", 0xF53D7C, 0x1
.incbin "baserom.nds", 0xF53D80, 0x1
.incbin "baserom.nds", 0xF53D84, 0x1
.incbin "baserom.nds", 0xF53D88, 0x1
.incbin "baserom.nds", 0xF53D8C, 0x1
.incbin "baserom.nds", 0xF53D90, 0x1
.incbin "baserom.nds", 0xF53D94, 0x1
.incbin "baserom.nds", 0xF53D98, 0x1
.incbin "baserom.nds", 0xF53D9C, 0x1
.incbin "baserom.nds", 0xF53DA0, 0x1
.incbin "baserom.nds", 0xF53DA4, 0x1
.incbin "baserom.nds", 0xF53DA8, 0x1
.incbin "baserom.nds", 0xF53DAC, 0x1
.incbin "baserom.nds", 0xF53DB0, 0x1
.incbin "baserom.nds", 0xF53DB4, 0x1
.incbin "baserom.nds", 0xF53DB8, 0x1
.incbin "baserom.nds", 0xF53DBC, 0x1
.incbin "baserom.nds", 0xF53DC0, 0x1
.incbin "baserom.nds", 0xF53DC4, 0x1
.incbin "baserom.nds", 0xF53DC8, 0x1
.incbin "baserom.nds", 0xF53DCC, 0x1
.incbin "baserom.nds", 0xF53DD0, 0x1
.incbin "baserom.nds", 0xF53DD4, 0x1
.incbin "baserom.nds", 0xF53DD8, 0x1
.incbin "baserom.nds", 0xF53DDC, 0x1
.incbin "baserom.nds", 0xF53DE0, 0x1
.incbin "baserom.nds", 0xF53DE4, 0x1
.incbin "baserom.nds", 0xF53DE8, 0x1
.incbin "baserom.nds", 0xF53DEC, 0x1
.incbin "baserom.nds", 0xF53DF0, 0x1
.incbin "baserom.nds", 0xF53DF4, 0x1
.incbin "baserom.nds", 0xF53DF8, 0x1
.incbin "baserom.nds", 0xF53DFC, 0x1
.incbin "baserom.nds", 0xF53E00, 0x1
.incbin "baserom.nds", 0xF53E04, 0x1
.incbin "baserom.nds", 0xF53E08, 0x1
.incbin "baserom.nds", 0xF53E0C, 0x1
.incbin "baserom.nds", 0xF53E10, 0x1
.incbin "baserom.nds", 0xF53E14, 0x1
.incbin "baserom.nds", 0xF53E18, 0x1
.incbin "baserom.nds", 0xF53E1C, 0x1
.incbin "baserom.nds", 0xF53E20, 0x1
.incbin "baserom.nds", 0xF53E24, 0x1
.incbin "baserom.nds", 0xF53E28, 0x1
.incbin "baserom.nds", 0xF53E2C, 0x1
.incbin "baserom.nds", 0xF53E30, 0x1
.incbin "baserom.nds", 0xF53E34, 0x1
.incbin "baserom.nds", 0xF53E38, 0x1
.incbin "baserom.nds", 0xF53E3C, 0x1
.incbin "baserom.nds", 0xF53E40, 0x1
.incbin "baserom.nds", 0xF53E44, 0x1
.incbin "baserom.nds", 0xF53E48, 0x1
.incbin "baserom.nds", 0xF53E4C, 0x1
.incbin "baserom.nds", 0xF53E50, 0x1
.incbin "baserom.nds", 0xF53E54, 0x1
.incbin "baserom.nds", 0xF53E58, 0x1
.incbin "baserom.nds", 0xF53E5C, 0x1
.incbin "baserom.nds", 0xF53E60, 0x1
.incbin "baserom.nds", 0xF53E64, 0x1
.incbin "baserom.nds", 0xF53E68, 0x1
.incbin "baserom.nds", 0xF53E6C, 0x1
.incbin "baserom.nds", 0xF53E70, 0x1
.incbin "baserom.nds", 0xF53E74, 0x1
.incbin "baserom.nds", 0xF53E78, 0x1
.incbin "baserom.nds", 0xF53E7C, 0x1
.incbin "baserom.nds", 0xF53E80, 0x1
.incbin "baserom.nds", 0xF53E84, 0x1
.incbin "baserom.nds", 0xF53E88, 0x1
.incbin "baserom.nds", 0xF53E8C, 0x1
.incbin "baserom.nds", 0xF53E90, 0x1
.incbin "baserom.nds", 0xF53E94, 0x1
.incbin "baserom.nds", 0xF53E98, 0x1
.incbin "baserom.nds", 0xF53E9C, 0x1
.incbin "baserom.nds", 0xF53EA0, 0x1
.incbin "baserom.nds", 0xF53EA4, 0x1
.incbin "baserom.nds", 0xF53EA8, 0x1
.incbin "baserom.nds", 0xF53EAC, 0x1
.incbin "baserom.nds", 0xF53EB0, 0x1
.incbin "baserom.nds", 0xF53EB4, 0x1
.incbin "baserom.nds", 0xF53EB8, 0x1
.incbin "baserom.nds", 0xF53EBC, 0x1
.incbin "baserom.nds", 0xF53EC0, 0x1
.incbin "baserom.nds", 0xF53EC4, 0x1
.incbin "baserom.nds", 0xF53EC8, 0x1
.incbin "baserom.nds", 0xF53ECC, 0x1
.incbin "baserom.nds", 0xF53ED0, 0x1
.incbin "baserom.nds", 0xF53ED4, 0x1
.incbin "baserom.nds", 0xF53ED8, 0x1
.incbin "baserom.nds", 0xF53EDC, 0x1
.incbin "baserom.nds", 0xF53EE0, 0x1
.incbin "baserom.nds", 0xF53EE4, 0x1
.incbin "baserom.nds", 0xF53EE8, 0x1
.incbin "baserom.nds", 0xF53EEC, 0x1
.incbin "baserom.nds", 0xF53EF0, 0x1
.incbin "baserom.nds", 0xF53EF4, 0x1
.incbin "baserom.nds", 0xF53EF8, 0x1
.incbin "baserom.nds", 0xF53EFC, 0x1
.incbin "baserom.nds", 0xF53F00, 0x1
.incbin "baserom.nds", 0xF53F04, 0x0
.incbin "baserom.nds", 0xF53F04, 0x1
.incbin "baserom.nds", 0xF53F08, 0x0
.incbin "baserom.nds", 0xF53F08, 0x1
.incbin "baserom.nds", 0xF53F0C, 0x1
.incbin "baserom.nds", 0xF53F10, 0x1
.incbin "baserom.nds", 0xF53F14, 0x1
.incbin "baserom.nds", 0xF53F18, 0x1
.incbin "baserom.nds", 0xF53F1C, 0x1
.incbin "baserom.nds", 0xF53F20, 0x1
.incbin "baserom.nds", 0xF53F24, 0x1
.incbin "baserom.nds", 0xF53F28, 0x1
.incbin "baserom.nds", 0xF53F2C, 0x1
.incbin "baserom.nds", 0xF53F30, 0x1
.incbin "baserom.nds", 0xF53F34, 0x1
.incbin "baserom.nds", 0xF53F38, 0x1
.incbin "baserom.nds", 0xF53F3C, 0x1
.incbin "baserom.nds", 0xF53F40, 0x1
.incbin "baserom.nds", 0xF53F44, 0x1
.incbin "baserom.nds", 0xF53F48, 0x1
.incbin "baserom.nds", 0xF53F4C, 0x1
.incbin "baserom.nds", 0xF53F50, 0x1
.incbin "baserom.nds", 0xF53F54, 0x1
.incbin "baserom.nds", 0xF53F58, 0x1
.incbin "baserom.nds", 0xF53F5C, 0x1
.incbin "baserom.nds", 0xF53F60, 0x1
.incbin "baserom.nds", 0xF53F64, 0x1
.incbin "baserom.nds", 0xF53F68, 0x1
.incbin "baserom.nds", 0xF53F6C, 0x1
.incbin "baserom.nds", 0xF53F70, 0x1
.incbin "baserom.nds", 0xF53F74, 0x1
.incbin "baserom.nds", 0xF53F78, 0x1
.incbin "baserom.nds", 0xF53F7C, 0x1
.incbin "baserom.nds", 0xF53F80, 0x1
.incbin "baserom.nds", 0xF53F84, 0x1
.incbin "baserom.nds", 0xF53F88, 0x1
.incbin "baserom.nds", 0xF53F8C, 0x1
.incbin "baserom.nds", 0xF53F90, 0x1
.incbin "baserom.nds", 0xF53F94, 0x1
.incbin "baserom.nds", 0xF53F98, 0x1
.incbin "baserom.nds", 0xF53F9C, 0x1
.incbin "baserom.nds", 0xF53FA0, 0x1
.incbin "baserom.nds", 0xF53FA4, 0x1
.incbin "baserom.nds", 0xF53FA8, 0x1
.incbin "baserom.nds", 0xF53FAC, 0x1
.incbin "baserom.nds", 0xF53FB0, 0x1
.incbin "baserom.nds", 0xF53FB4, 0x1
.incbin "baserom.nds", 0xF53FB8, 0x1
.incbin "baserom.nds", 0xF53FBC, 0x1
.incbin "baserom.nds", 0xF53FC0, 0x1
.incbin "baserom.nds", 0xF53FC4, 0x1
.incbin "baserom.nds", 0xF53FC8, 0x1
.incbin "baserom.nds", 0xF53FCC, 0x1
.incbin "baserom.nds", 0xF53FD0, 0x1
.incbin "baserom.nds", 0xF53FD4, 0x1
.incbin "baserom.nds", 0xF53FD8, 0x1
.incbin "baserom.nds", 0xF53FDC, 0x1
.incbin "baserom.nds", 0xF53FE0, 0x1
.incbin "baserom.nds", 0xF53FE4, 0x1
.incbin "baserom.nds", 0xF53FE8, 0x1
.incbin "baserom.nds", 0xF53FEC, 0x1
.incbin "baserom.nds", 0xF53FF0, 0x1
.incbin "baserom.nds", 0xF53FF4, 0x1
.incbin "baserom.nds", 0xF53FF8, 0x1
.incbin "baserom.nds", 0xF53FFC, 0x1
.incbin "baserom.nds", 0xF54000, 0x1
.incbin "baserom.nds", 0xF54004, 0x1
.incbin "baserom.nds", 0xF54008, 0x1
.incbin "baserom.nds", 0xF5400C, 0x1
.incbin "baserom.nds", 0xF54010, 0x1
.incbin "baserom.nds", 0xF54014, 0x1
.incbin "baserom.nds", 0xF54018, 0x1
.incbin "baserom.nds", 0xF5401C, 0x1
.incbin "baserom.nds", 0xF54020, 0x1
.incbin "baserom.nds", 0xF54024, 0x1
.incbin "baserom.nds", 0xF54028, 0x1
.incbin "baserom.nds", 0xF5402C, 0x1
.incbin "baserom.nds", 0xF54030, 0x1
.incbin "baserom.nds", 0xF54034, 0x1
.incbin "baserom.nds", 0xF54038, 0x1
.incbin "baserom.nds", 0xF5403C, 0x1
.incbin "baserom.nds", 0xF54040, 0x1
.incbin "baserom.nds", 0xF54044, 0x1
.incbin "baserom.nds", 0xF54048, 0x1
.incbin "baserom.nds", 0xF5404C, 0x0
.incbin "baserom.nds", 0xF5404C, 0x1
.incbin "baserom.nds", 0xF54050, 0x0
.incbin "baserom.nds", 0xF54050, 0x1
.incbin "baserom.nds", 0xF54054, 0x1
.incbin "baserom.nds", 0xF54058, 0x0
.incbin "baserom.nds", 0xF54058, 0x1
.incbin "baserom.nds", 0xF5405C, 0x0
.incbin "baserom.nds", 0xF5405C, 0x1
.incbin "baserom.nds", 0xF54060, 0x1
.incbin "baserom.nds", 0xF54064, 0x1
.incbin "baserom.nds", 0xF54068, 0x1
.incbin "baserom.nds", 0xF5406C, 0x1
.incbin "baserom.nds", 0xF54070, 0x1
.incbin "baserom.nds", 0xF54074, 0x1
.incbin "baserom.nds", 0xF54078, 0x1
.incbin "baserom.nds", 0xF5407C, 0x1
.incbin "baserom.nds", 0xF54080, 0x1
.incbin "baserom.nds", 0xF54084, 0x1
.incbin "baserom.nds", 0xF54088, 0x1
.incbin "baserom.nds", 0xF5408C, 0x1
.incbin "baserom.nds", 0xF54090, 0x1
.incbin "baserom.nds", 0xF54094, 0x1
.incbin "baserom.nds", 0xF54098, 0x1
.incbin "baserom.nds", 0xF5409C, 0x1
.incbin "baserom.nds", 0xF540A0, 0x1
.incbin "baserom.nds", 0xF540A4, 0x1
.incbin "baserom.nds", 0xF540A8, 0x1
.incbin "baserom.nds", 0xF540AC, 0x1
.incbin "baserom.nds", 0xF540B0, 0x1
.incbin "baserom.nds", 0xF540B4, 0x1
.incbin "baserom.nds", 0xF540B8, 0x1
.incbin "baserom.nds", 0xF540BC, 0x1
.incbin "baserom.nds", 0xF540C0, 0x1
.incbin "baserom.nds", 0xF540C4, 0x1
.incbin "baserom.nds", 0xF540C8, 0x1
.incbin "baserom.nds", 0xF540CC, 0x1
.incbin "baserom.nds", 0xF540D0, 0x1
.incbin "baserom.nds", 0xF540D4, 0x1
.incbin "baserom.nds", 0xF540D8, 0x1
.incbin "baserom.nds", 0xF540DC, 0x1
.incbin "baserom.nds", 0xF540E0, 0x1
.incbin "baserom.nds", 0xF540E4, 0x1
.incbin "baserom.nds", 0xF540E8, 0x1
.incbin "baserom.nds", 0xF540EC, 0x1
.incbin "baserom.nds", 0xF540F0, 0x1
.incbin "baserom.nds", 0xF540F4, 0x1
.incbin "baserom.nds", 0xF540F8, 0x1
.incbin "baserom.nds", 0xF540FC, 0x1
.incbin "baserom.nds", 0xF54100, 0x1
.incbin "baserom.nds", 0xF54104, 0x1
.incbin "baserom.nds", 0xF54108, 0x1
.incbin "baserom.nds", 0xF5410C, 0x1
.incbin "baserom.nds", 0xF54110, 0x1
.incbin "baserom.nds", 0xF54114, 0x1
.incbin "baserom.nds", 0xF54118, 0x1
.incbin "baserom.nds", 0xF5411C, 0x1
.incbin "baserom.nds", 0xF54120, 0x1
.incbin "baserom.nds", 0xF54124, 0x1
.incbin "baserom.nds", 0xF54128, 0x1
.incbin "baserom.nds", 0xF5412C, 0x1
.incbin "baserom.nds", 0xF54130, 0x1
.incbin "baserom.nds", 0xF54134, 0x1
.incbin "baserom.nds", 0xF54138, 0x1
.incbin "baserom.nds", 0xF5413C, 0x1
.incbin "baserom.nds", 0xF54140, 0x1
.incbin "baserom.nds", 0xF54144, 0x1
.incbin "baserom.nds", 0xF54148, 0x1
.incbin "baserom.nds", 0xF5414C, 0x1
.incbin "baserom.nds", 0xF54150, 0x1
.incbin "baserom.nds", 0xF54154, 0x1
.incbin "baserom.nds", 0xF54158, 0x1
.incbin "baserom.nds", 0xF5415C, 0x1
.incbin "baserom.nds", 0xF54160, 0x1
.incbin "baserom.nds", 0xF54164, 0x1
.incbin "baserom.nds", 0xF54168, 0x1
.incbin "baserom.nds", 0xF5416C, 0x1
.incbin "baserom.nds", 0xF54170, 0x1
.incbin "baserom.nds", 0xF54174, 0x1
.incbin "baserom.nds", 0xF54178, 0x1
.incbin "baserom.nds", 0xF5417C, 0x1
.incbin "baserom.nds", 0xF54180, 0x1
.incbin "baserom.nds", 0xF54184, 0x1
.incbin "baserom.nds", 0xF54188, 0x1
.incbin "baserom.nds", 0xF5418C, 0x1
.incbin "baserom.nds", 0xF54190, 0x1
.incbin "baserom.nds", 0xF54194, 0x1
.incbin "baserom.nds", 0xF54198, 0x1
.incbin "baserom.nds", 0xF5419C, 0x1
.incbin "baserom.nds", 0xF541A0, 0x1
.incbin "baserom.nds", 0xF541A4, 0x1
.incbin "baserom.nds", 0xF541A8, 0x1
.incbin "baserom.nds", 0xF541AC, 0x1
.incbin "baserom.nds", 0xF541B0, 0x1
.incbin "baserom.nds", 0xF541B4, 0x1
.incbin "baserom.nds", 0xF541B8, 0x1
.incbin "baserom.nds", 0xF541BC, 0x0
.incbin "baserom.nds", 0xF541BC, 0x1
.incbin "baserom.nds", 0xF541C0, 0x0
.incbin "baserom.nds", 0xF541C0, 0x1
.incbin "baserom.nds", 0xF541C4, 0x0
.incbin "baserom.nds", 0xF541C4, 0x1
.incbin "baserom.nds", 0xF541C8, 0x0
.incbin "baserom.nds", 0xF541C8, 0x1
.incbin "baserom.nds", 0xF541CC, 0x1
.incbin "baserom.nds", 0xF541D0, 0x1
.incbin "baserom.nds", 0xF541D4, 0x1
.incbin "baserom.nds", 0xF541D8, 0x1
.incbin "baserom.nds", 0xF541DC, 0x1
.incbin "baserom.nds", 0xF541E0, 0x1
.incbin "baserom.nds", 0xF541E4, 0x1
.incbin "baserom.nds", 0xF541E8, 0x1
.incbin "baserom.nds", 0xF541EC, 0x1
.incbin "baserom.nds", 0xF541F0, 0x1
.incbin "baserom.nds", 0xF541F4, 0x1
.incbin "baserom.nds", 0xF541F8, 0x1
.incbin "baserom.nds", 0xF541FC, 0x1
.incbin "baserom.nds", 0xF54200, 0x1
.incbin "baserom.nds", 0xF54204, 0x1
.incbin "baserom.nds", 0xF54208, 0x1
.incbin "baserom.nds", 0xF5420C, 0x0
.incbin "baserom.nds", 0xF5420C, 0x1
.incbin "baserom.nds", 0xF54210, 0x0
.incbin "baserom.nds", 0xF54210, 0x1
.incbin "baserom.nds", 0xF54214, 0x0
.incbin "baserom.nds", 0xF54214, 0x1
.incbin "baserom.nds", 0xF54218, 0x0
.incbin "baserom.nds", 0xF54218, 0x1
.incbin "baserom.nds", 0xF5421C, 0x1
.incbin "baserom.nds", 0xF54220, 0x1
.incbin "baserom.nds", 0xF54224, 0x1
.incbin "baserom.nds", 0xF54228, 0x1
.incbin "baserom.nds", 0xF5422C, 0x1
.incbin "baserom.nds", 0xF54230, 0x1
.incbin "baserom.nds", 0xF54234, 0x1
.incbin "baserom.nds", 0xF54238, 0x1
.incbin "baserom.nds", 0xF5423C, 0x1
.incbin "baserom.nds", 0xF54240, 0x1
.incbin "baserom.nds", 0xF54244, 0x1
.incbin "baserom.nds", 0xF54248, 0x1
.incbin "baserom.nds", 0xF5424C, 0x1
.incbin "baserom.nds", 0xF54250, 0x1
.incbin "baserom.nds", 0xF54254, 0x1
.incbin "baserom.nds", 0xF54258, 0x1
.incbin "baserom.nds", 0xF5425C, 0x1
.incbin "baserom.nds", 0xF54260, 0x1
.incbin "baserom.nds", 0xF54264, 0x1
.incbin "baserom.nds", 0xF54268, 0x1
.incbin "baserom.nds", 0xF5426C, 0x1
.incbin "baserom.nds", 0xF54270, 0x1
.incbin "baserom.nds", 0xF54274, 0x1
.incbin "baserom.nds", 0xF54278, 0x1
.incbin "baserom.nds", 0xF5427C, 0x1
.incbin "baserom.nds", 0xF54280, 0x1
.incbin "baserom.nds", 0xF54284, 0x1
.incbin "baserom.nds", 0xF54288, 0x1
.incbin "baserom.nds", 0xF5428C, 0x1
.incbin "baserom.nds", 0xF54290, 0x1
.incbin "baserom.nds", 0xF54294, 0x1
.incbin "baserom.nds", 0xF54298, 0x1
.incbin "baserom.nds", 0xF5429C, 0x1
.incbin "baserom.nds", 0xF542A0, 0x1
.incbin "baserom.nds", 0xF542A4, 0x1
.incbin "baserom.nds", 0xF542A8, 0x1
.incbin "baserom.nds", 0xF542AC, 0x1
.incbin "baserom.nds", 0xF542B0, 0x1
.incbin "baserom.nds", 0xF542B4, 0x1
.incbin "baserom.nds", 0xF542B8, 0x1
.incbin "baserom.nds", 0xF542BC, 0x1
.incbin "baserom.nds", 0xF542C0, 0x1
.incbin "baserom.nds", 0xF542C4, 0x1
.incbin "baserom.nds", 0xF542C8, 0x1
.incbin "baserom.nds", 0xF542CC, 0x1
.incbin "baserom.nds", 0xF542D0, 0x1
.incbin "baserom.nds", 0xF542D4, 0x1
.incbin "baserom.nds", 0xF542D8, 0x1
.incbin "baserom.nds", 0xF542DC, 0x1
.incbin "baserom.nds", 0xF542E0, 0x1
.incbin "baserom.nds", 0xF542E4, 0x1
.incbin "baserom.nds", 0xF542E8, 0x1
.incbin "baserom.nds", 0xF542EC, 0x1
.incbin "baserom.nds", 0xF542F0, 0x1
.incbin "baserom.nds", 0xF542F4, 0x1
.incbin "baserom.nds", 0xF542F8, 0x1
.incbin "baserom.nds", 0xF542FC, 0x1
.incbin "baserom.nds", 0xF54300, 0x1
.incbin "baserom.nds", 0xF54304, 0x1
.incbin "baserom.nds", 0xF54308, 0x1
.incbin "baserom.nds", 0xF5430C, 0x1
.incbin "baserom.nds", 0xF54310, 0x1
.incbin "baserom.nds", 0xF54314, 0x1
.incbin "baserom.nds", 0xF54318, 0x1
.incbin "baserom.nds", 0xF5431C, 0x1
.incbin "baserom.nds", 0xF54320, 0x1
.incbin "baserom.nds", 0xF54324, 0x1
.incbin "baserom.nds", 0xF54328, 0x1
.incbin "baserom.nds", 0xF5432C, 0x1
.incbin "baserom.nds", 0xF54330, 0x1
.incbin "baserom.nds", 0xF54334, 0x1
.incbin "baserom.nds", 0xF54338, 0x1
.incbin "baserom.nds", 0xF5433C, 0x1
.incbin "baserom.nds", 0xF54340, 0x1
.incbin "baserom.nds", 0xF54344, 0x1
.incbin "baserom.nds", 0xF54348, 0x1
.incbin "baserom.nds", 0xF5434C, 0x1
.incbin "baserom.nds", 0xF54350, 0x1
.incbin "baserom.nds", 0xF54354, 0x1
.incbin "baserom.nds", 0xF54358, 0x1
.incbin "baserom.nds", 0xF5435C, 0x1
.incbin "baserom.nds", 0xF54360, 0x1
.incbin "baserom.nds", 0xF54364, 0x1
.incbin "baserom.nds", 0xF54368, 0x1
.incbin "baserom.nds", 0xF5436C, 0x1
.incbin "baserom.nds", 0xF54370, 0x1
.incbin "baserom.nds", 0xF54374, 0x1
.incbin "baserom.nds", 0xF54378, 0x1
.incbin "baserom.nds", 0xF5437C, 0x1
.incbin "baserom.nds", 0xF54380, 0x1
.incbin "baserom.nds", 0xF54384, 0x1
.incbin "baserom.nds", 0xF54388, 0x1
.incbin "baserom.nds", 0xF5438C, 0x1
.incbin "baserom.nds", 0xF54390, 0x1
.incbin "baserom.nds", 0xF54394, 0x1
.incbin "baserom.nds", 0xF54398, 0x1
.incbin "baserom.nds", 0xF5439C, 0x1
.incbin "baserom.nds", 0xF543A0, 0x1
.incbin "baserom.nds", 0xF543A4, 0x1
.incbin "baserom.nds", 0xF543A8, 0x1
.incbin "baserom.nds", 0xF543AC, 0x1
.incbin "baserom.nds", 0xF543B0, 0x1
.incbin "baserom.nds", 0xF543B4, 0x1
.incbin "baserom.nds", 0xF543B8, 0x1
.incbin "baserom.nds", 0xF543BC, 0x1
.incbin "baserom.nds", 0xF543C0, 0x1
.incbin "baserom.nds", 0xF543C4, 0x1
.incbin "baserom.nds", 0xF543C8, 0x1
.incbin "baserom.nds", 0xF543CC, 0x1
.incbin "baserom.nds", 0xF543D0, 0x1
.incbin "baserom.nds", 0xF543D4, 0x1
.incbin "baserom.nds", 0xF543D8, 0x1
.incbin "baserom.nds", 0xF543DC, 0x1
.incbin "baserom.nds", 0xF543E0, 0x1
.incbin "baserom.nds", 0xF543E4, 0x1
.incbin "baserom.nds", 0xF543E8, 0x1
.incbin "baserom.nds", 0xF543EC, 0x0
.incbin "baserom.nds", 0xF543EC, 0x1
.incbin "baserom.nds", 0xF543F0, 0x0
.incbin "baserom.nds", 0xF543F0, 0x1
.incbin "baserom.nds", 0xF543F4, 0x0
.incbin "baserom.nds", 0xF543F4, 0x1
.incbin "baserom.nds", 0xF543F8, 0x0
.incbin "baserom.nds", 0xF543F8, 0x1
.incbin "baserom.nds", 0xF543FC, 0x0
.incbin "baserom.nds", 0xF543FC, 0x1
.incbin "baserom.nds", 0xF54400, 0x0
.incbin "baserom.nds", 0xF54400, 0x1
.incbin "baserom.nds", 0xF54404, 0x0
.incbin "baserom.nds", 0xF54404, 0x1
.incbin "baserom.nds", 0xF54408, 0x0
.incbin "baserom.nds", 0xF54408, 0x1
.incbin "baserom.nds", 0xF5440C, 0x0
.incbin "baserom.nds", 0xF5440C, 0x1
.incbin "baserom.nds", 0xF54410, 0x0
.incbin "baserom.nds", 0xF54410, 0x1
.incbin "baserom.nds", 0xF54414, 0x0
.incbin "baserom.nds", 0xF54414, 0x1
.incbin "baserom.nds", 0xF54418, 0x0
.incbin "baserom.nds", 0xF54418, 0x1
.incbin "baserom.nds", 0xF5441C, 0x1
.incbin "baserom.nds", 0xF54420, 0x0
.incbin "baserom.nds", 0xF54420, 0x1
.incbin "baserom.nds", 0xF54424, 0x0
.incbin "baserom.nds", 0xF54424, 0x0
.incbin "baserom.nds", 0xF54424, 0x1
.incbin "baserom.nds", 0xF54428, 0x0
.incbin "baserom.nds", 0xF54428, 0x1
.incbin "baserom.nds", 0xF5442C, 0x0
.incbin "baserom.nds", 0xF5442C, 0x1
.incbin "baserom.nds", 0xF54430, 0x0
.incbin "baserom.nds", 0xF54430, 0x1
.incbin "baserom.nds", 0xF54434, 0x0
.incbin "baserom.nds", 0xF54434, 0x1
.incbin "baserom.nds", 0xF54438, 0x0
.incbin "baserom.nds", 0xF54438, 0x1
.incbin "baserom.nds", 0xF5443C, 0x0
.incbin "baserom.nds", 0xF5443C, 0x1
.incbin "baserom.nds", 0xF54440, 0x0
.incbin "baserom.nds", 0xF54440, 0x1
.incbin "baserom.nds", 0xF54444, 0x0
.incbin "baserom.nds", 0xF54444, 0x1
.incbin "baserom.nds", 0xF54448, 0x0
.incbin "baserom.nds", 0xF54448, 0x1
.incbin "baserom.nds", 0xF5444C, 0x0
.incbin "baserom.nds", 0xF5444C, 0x1
.incbin "baserom.nds", 0xF54450, 0x0
.incbin "baserom.nds", 0xF54450, 0x1
.incbin "baserom.nds", 0xF54454, 0x1
.incbin "baserom.nds", 0xF54458, 0x1
.incbin "baserom.nds", 0xF5445C, 0x1
.incbin "baserom.nds", 0xF54460, 0x1
.incbin "baserom.nds", 0xF54464, 0x1
.incbin "baserom.nds", 0xF54468, 0x1
.incbin "baserom.nds", 0xF5446C, 0x1
.incbin "baserom.nds", 0xF54470, 0x1
.incbin "baserom.nds", 0xF54474, 0x1
.incbin "baserom.nds", 0xF54478, 0x1
.incbin "baserom.nds", 0xF5447C, 0x1
.incbin "baserom.nds", 0xF54480, 0x1
.incbin "baserom.nds", 0xF54484, 0x1
.incbin "baserom.nds", 0xF54488, 0x1
.incbin "baserom.nds", 0xF5448C, 0x1
.incbin "baserom.nds", 0xF54490, 0x1
.incbin "baserom.nds", 0xF54494, 0x1
.incbin "baserom.nds", 0xF54498, 0x1
.incbin "baserom.nds", 0xF5449C, 0x1
.incbin "baserom.nds", 0xF544A0, 0x1
.incbin "baserom.nds", 0xF544A4, 0x1
.incbin "baserom.nds", 0xF544A8, 0x1
.incbin "baserom.nds", 0xF544AC, 0x1
.incbin "baserom.nds", 0xF544B0, 0x1
.incbin "baserom.nds", 0xF544B4, 0x1
.incbin "baserom.nds", 0xF544B8, 0x1
.incbin "baserom.nds", 0xF544BC, 0x1
.incbin "baserom.nds", 0xF544C0, 0x1
.incbin "baserom.nds", 0xF544C4, 0x1
.incbin "baserom.nds", 0xF544C8, 0x1
.incbin "baserom.nds", 0xF544CC, 0x1
.incbin "baserom.nds", 0xF544D0, 0x1
.incbin "baserom.nds", 0xF544D4, 0x1
.incbin "baserom.nds", 0xF544D8, 0x1
.incbin "baserom.nds", 0xF544DC, 0x1
.incbin "baserom.nds", 0xF544E0, 0x1
.incbin "baserom.nds", 0xF544E4, 0x1
.incbin "baserom.nds", 0xF544E8, 0x1
.incbin "baserom.nds", 0xF544EC, 0x1
.incbin "baserom.nds", 0xF544F0, 0x1
.incbin "baserom.nds", 0xF544F4, 0x1
.incbin "baserom.nds", 0xF544F8, 0x1
.incbin "baserom.nds", 0xF544FC, 0x1
.incbin "baserom.nds", 0xF54500, 0x1
.incbin "baserom.nds", 0xF54504, 0x1
.incbin "baserom.nds", 0xF54508, 0x1
.incbin "baserom.nds", 0xF5450C, 0x1
.incbin "baserom.nds", 0xF54510, 0x1
.incbin "baserom.nds", 0xF54514, 0x1
.incbin "baserom.nds", 0xF54518, 0x1
.incbin "baserom.nds", 0xF5451C, 0x1
.incbin "baserom.nds", 0xF54520, 0x1
.incbin "baserom.nds", 0xF54524, 0x1
.incbin "baserom.nds", 0xF54528, 0x1
.incbin "baserom.nds", 0xF5452C, 0x1
.incbin "baserom.nds", 0xF54530, 0x1
.incbin "baserom.nds", 0xF54534, 0x1
.incbin "baserom.nds", 0xF54538, 0x1
.incbin "baserom.nds", 0xF5453C, 0x1
.incbin "baserom.nds", 0xF54540, 0x1
.incbin "baserom.nds", 0xF54544, 0x1
.incbin "baserom.nds", 0xF54548, 0x1
.incbin "baserom.nds", 0xF5454C, 0x1
.incbin "baserom.nds", 0xF54550, 0x1
.incbin "baserom.nds", 0xF54554, 0x1
.incbin "baserom.nds", 0xF54558, 0x1
.incbin "baserom.nds", 0xF5455C, 0x1
.incbin "baserom.nds", 0xF54560, 0x1
.incbin "baserom.nds", 0xF54564, 0x1
.incbin "baserom.nds", 0xF54568, 0x1
.incbin "baserom.nds", 0xF5456C, 0x1
.incbin "baserom.nds", 0xF54570, 0x1
.incbin "baserom.nds", 0xF54574, 0x1
.incbin "baserom.nds", 0xF54578, 0x1
.incbin "baserom.nds", 0xF5457C, 0x1
.incbin "baserom.nds", 0xF54580, 0x1
.incbin "baserom.nds", 0xF54584, 0x1
.incbin "baserom.nds", 0xF54588, 0x1
.incbin "baserom.nds", 0xF5458C, 0x1
.incbin "baserom.nds", 0xF54590, 0x1
.incbin "baserom.nds", 0xF54594, 0x1
.incbin "baserom.nds", 0xF54598, 0x1
.incbin "baserom.nds", 0xF5459C, 0x1
.incbin "baserom.nds", 0xF545A0, 0x1
.incbin "baserom.nds", 0xF545A4, 0x1
.incbin "baserom.nds", 0xF545A8, 0x1
.incbin "baserom.nds", 0xF545AC, 0x1
.incbin "baserom.nds", 0xF545B0, 0x1
.incbin "baserom.nds", 0xF545B4, 0x1
.incbin "baserom.nds", 0xF545B8, 0x1
.incbin "baserom.nds", 0xF545BC, 0x1
.incbin "baserom.nds", 0xF545C0, 0x1
.incbin "baserom.nds", 0xF545C4, 0x1
.incbin "baserom.nds", 0xF545C8, 0x1
.incbin "baserom.nds", 0xF545CC, 0x1
.incbin "baserom.nds", 0xF545D0, 0x1
.incbin "baserom.nds", 0xF545D4, 0x1
.incbin "baserom.nds", 0xF545D8, 0x1
.incbin "baserom.nds", 0xF545DC, 0x1
.incbin "baserom.nds", 0xF545E0, 0x1
.incbin "baserom.nds", 0xF545E4, 0x1
.incbin "baserom.nds", 0xF545E8, 0x1
.incbin "baserom.nds", 0xF545EC, 0x1
.incbin "baserom.nds", 0xF545F0, 0x1
.incbin "baserom.nds", 0xF545F4, 0x1
.incbin "baserom.nds", 0xF545F8, 0x0
.incbin "baserom.nds", 0xF545F8, 0x1
.incbin "baserom.nds", 0xF545FC, 0x0
.incbin "baserom.nds", 0xF545FC, 0x0
.incbin "baserom.nds", 0xF545FC, 0x1
.incbin "baserom.nds", 0xF54600, 0x0
.incbin "baserom.nds", 0xF54600, 0x1
.incbin "baserom.nds", 0xF54604, 0x1
.incbin "baserom.nds", 0xF54608, 0x1
.incbin "baserom.nds", 0xF5460C, 0x1
.incbin "baserom.nds", 0xF54610, 0x1
.incbin "baserom.nds", 0xF54614, 0x1
.incbin "baserom.nds", 0xF54618, 0x0
.incbin "baserom.nds", 0xF54618, 0x1
.incbin "baserom.nds", 0xF5461C, 0x0
.incbin "baserom.nds", 0xF5461C, 0x1
.incbin "baserom.nds", 0xF54620, 0x1
.incbin "baserom.nds", 0xF54624, 0x1
.incbin "baserom.nds", 0xF54628, 0x1
.incbin "baserom.nds", 0xF5462C, 0x1
.incbin "baserom.nds", 0xF54630, 0x1
.incbin "baserom.nds", 0xF54634, 0x1
.incbin "baserom.nds", 0xF54638, 0x1
.incbin "baserom.nds", 0xF5463C, 0x1
.incbin "baserom.nds", 0xF54640, 0x1
.incbin "baserom.nds", 0xF54644, 0x1
.incbin "baserom.nds", 0xF54648, 0x1
.incbin "baserom.nds", 0xF5464C, 0x1
.incbin "baserom.nds", 0xF54650, 0x1
.incbin "baserom.nds", 0xF54654, 0x1
.incbin "baserom.nds", 0xF54658, 0x1
.incbin "baserom.nds", 0xF5465C, 0x1
.incbin "baserom.nds", 0xF54660, 0x1
.incbin "baserom.nds", 0xF54664, 0x1
.incbin "baserom.nds", 0xF54668, 0x1
.incbin "baserom.nds", 0xF5466C, 0x1
.incbin "baserom.nds", 0xF54670, 0x1
.incbin "baserom.nds", 0xF54674, 0x1
.incbin "baserom.nds", 0xF54678, 0x1
.incbin "baserom.nds", 0xF5467C, 0x1
.incbin "baserom.nds", 0xF54680, 0x1
.incbin "baserom.nds", 0xF54684, 0x1
.incbin "baserom.nds", 0xF54688, 0x1
.incbin "baserom.nds", 0xF5468C, 0x1
.incbin "baserom.nds", 0xF54690, 0x1
.incbin "baserom.nds", 0xF54694, 0x1
.incbin "baserom.nds", 0xF54698, 0x1
.incbin "baserom.nds", 0xF5469C, 0x1
.incbin "baserom.nds", 0xF546A0, 0x1
.incbin "baserom.nds", 0xF546A4, 0x1
.incbin "baserom.nds", 0xF546A8, 0x1
.incbin "baserom.nds", 0xF546AC, 0x1
.incbin "baserom.nds", 0xF546B0, 0x1
.incbin "baserom.nds", 0xF546B4, 0x1
.incbin "baserom.nds", 0xF546B8, 0x1
.incbin "baserom.nds", 0xF546BC, 0x1
.incbin "baserom.nds", 0xF546C0, 0x1
.incbin "baserom.nds", 0xF546C4, 0x1
.incbin "baserom.nds", 0xF546C8, 0x1
.incbin "baserom.nds", 0xF546CC, 0x1
.incbin "baserom.nds", 0xF546D0, 0x1
.incbin "baserom.nds", 0xF546D4, 0x1
.incbin "baserom.nds", 0xF546D8, 0x1
.incbin "baserom.nds", 0xF546DC, 0x1
.incbin "baserom.nds", 0xF546E0, 0x1
.incbin "baserom.nds", 0xF546E4, 0x1
.incbin "baserom.nds", 0xF546E8, 0x1
.incbin "baserom.nds", 0xF546EC, 0x1
.incbin "baserom.nds", 0xF546F0, 0x1
.incbin "baserom.nds", 0xF546F4, 0x1
.incbin "baserom.nds", 0xF546F8, 0x1
.incbin "baserom.nds", 0xF546FC, 0x1
.incbin "baserom.nds", 0xF54700, 0x1
.incbin "baserom.nds", 0xF54704, 0x1
.incbin "baserom.nds", 0xF54708, 0x1
.incbin "baserom.nds", 0xF5470C, 0x1
.incbin "baserom.nds", 0xF54710, 0x1
.incbin "baserom.nds", 0xF54714, 0x1
.incbin "baserom.nds", 0xF54718, 0x1
.incbin "baserom.nds", 0xF5471C, 0x1
.incbin "baserom.nds", 0xF54720, 0x1
.incbin "baserom.nds", 0xF54724, 0x1
.incbin "baserom.nds", 0xF54728, 0x1
.incbin "baserom.nds", 0xF5472C, 0x1
.incbin "baserom.nds", 0xF54730, 0x1
.incbin "baserom.nds", 0xF54734, 0x1
.incbin "baserom.nds", 0xF54738, 0x1
.incbin "baserom.nds", 0xF5473C, 0x1
.incbin "baserom.nds", 0xF54740, 0x1
.incbin "baserom.nds", 0xF54744, 0x1
.incbin "baserom.nds", 0xF54748, 0x1
.incbin "baserom.nds", 0xF5474C, 0x0
.incbin "baserom.nds", 0xF5474C, 0x1
.incbin "baserom.nds", 0xF54750, 0x0
.incbin "baserom.nds", 0xF54750, 0x1
.incbin "baserom.nds", 0xF54754, 0x0
.incbin "baserom.nds", 0xF54754, 0x1
.incbin "baserom.nds", 0xF54758, 0x0
.incbin "baserom.nds", 0xF54758, 0x1
.incbin "baserom.nds", 0xF5475C, 0x1
.incbin "baserom.nds", 0xF54760, 0x1
.incbin "baserom.nds", 0xF54764, 0x1
.incbin "baserom.nds", 0xF54768, 0x1
.incbin "baserom.nds", 0xF5476C, 0x1
.incbin "baserom.nds", 0xF54770, 0x1
.incbin "baserom.nds", 0xF54774, 0x1
.incbin "baserom.nds", 0xF54778, 0x1
.incbin "baserom.nds", 0xF5477C, 0x1
.incbin "baserom.nds", 0xF54780, 0x0
.incbin "baserom.nds", 0xF54780, 0x1
.incbin "baserom.nds", 0xF54784, 0x0
.incbin "baserom.nds", 0xF54784, 0x1
.incbin "baserom.nds", 0xF54788, 0x1
.incbin "baserom.nds", 0xF5478C, 0x1
.incbin "baserom.nds", 0xF54790, 0x1
.incbin "baserom.nds", 0xF54794, 0x1
.incbin "baserom.nds", 0xF54798, 0x1
.incbin "baserom.nds", 0xF5479C, 0x1
.incbin "baserom.nds", 0xF547A0, 0x1
.incbin "baserom.nds", 0xF547A4, 0x1
.incbin "baserom.nds", 0xF547A8, 0x1
.incbin "baserom.nds", 0xF547AC, 0x1
.incbin "baserom.nds", 0xF547B0, 0x1
.incbin "baserom.nds", 0xF547B4, 0x1
.incbin "baserom.nds", 0xF547B8, 0x1
.incbin "baserom.nds", 0xF547BC, 0x1
.incbin "baserom.nds", 0xF547C0, 0x1
.incbin "baserom.nds", 0xF547C4, 0x1
.incbin "baserom.nds", 0xF547C8, 0x1
.incbin "baserom.nds", 0xF547CC, 0x1
.incbin "baserom.nds", 0xF547D0, 0x1
.incbin "baserom.nds", 0xF547D4, 0x1
.incbin "baserom.nds", 0xF547D8, 0x1
.incbin "baserom.nds", 0xF547DC, 0x1
.incbin "baserom.nds", 0xF547E0, 0x1
.incbin "baserom.nds", 0xF547E4, 0x1
.incbin "baserom.nds", 0xF547E8, 0x1
.incbin "baserom.nds", 0xF547EC, 0x1
.incbin "baserom.nds", 0xF547F0, 0x1
.incbin "baserom.nds", 0xF547F4, 0x1
.incbin "baserom.nds", 0xF547F8, 0x1
.incbin "baserom.nds", 0xF547FC, 0x1
.incbin "baserom.nds", 0xF54800, 0x1
.incbin "baserom.nds", 0xF54804, 0x1
.incbin "baserom.nds", 0xF54808, 0x1
.incbin "baserom.nds", 0xF5480C, 0x1
.incbin "baserom.nds", 0xF54810, 0x1
.incbin "baserom.nds", 0xF54814, 0x1
.incbin "baserom.nds", 0xF54818, 0x1
.incbin "baserom.nds", 0xF5481C, 0x1
.incbin "baserom.nds", 0xF54820, 0x1
.incbin "baserom.nds", 0xF54824, 0x1
.incbin "baserom.nds", 0xF54828, 0x1
.incbin "baserom.nds", 0xF5482C, 0x1
.incbin "baserom.nds", 0xF54830, 0x1
.incbin "baserom.nds", 0xF54834, 0x1
.incbin "baserom.nds", 0xF54838, 0x1
.incbin "baserom.nds", 0xF5483C, 0x1
.incbin "baserom.nds", 0xF54840, 0x1
.incbin "baserom.nds", 0xF54844, 0x1
.incbin "baserom.nds", 0xF54848, 0x1
.incbin "baserom.nds", 0xF5484C, 0x1
.incbin "baserom.nds", 0xF54850, 0x1
.incbin "baserom.nds", 0xF54854, 0x1
.incbin "baserom.nds", 0xF54858, 0x1
.incbin "baserom.nds", 0xF5485C, 0x1
.incbin "baserom.nds", 0xF54860, 0x1
.incbin "baserom.nds", 0xF54864, 0x1
.incbin "baserom.nds", 0xF54868, 0x1
.incbin "baserom.nds", 0xF5486C, 0x1
.incbin "baserom.nds", 0xF54870, 0x1
.incbin "baserom.nds", 0xF54874, 0x1
.incbin "baserom.nds", 0xF54878, 0x1
.incbin "baserom.nds", 0xF5487C, 0x1
.incbin "baserom.nds", 0xF54880, 0x1
.incbin "baserom.nds", 0xF54884, 0x1
.incbin "baserom.nds", 0xF54888, 0x1
.incbin "baserom.nds", 0xF5488C, 0x1
.incbin "baserom.nds", 0xF54890, 0x1
.incbin "baserom.nds", 0xF54894, 0x1
.incbin "baserom.nds", 0xF54898, 0x1
.incbin "baserom.nds", 0xF5489C, 0x1
.incbin "baserom.nds", 0xF548A0, 0x1
.incbin "baserom.nds", 0xF548A4, 0x1
.incbin "baserom.nds", 0xF548A8, 0x1
.incbin "baserom.nds", 0xF548AC, 0x1
.incbin "baserom.nds", 0xF548B0, 0x1
.incbin "baserom.nds", 0xF548B4, 0x1
.incbin "baserom.nds", 0xF548B8, 0x1
.incbin "baserom.nds", 0xF548BC, 0x1
.incbin "baserom.nds", 0xF548C0, 0x1
.incbin "baserom.nds", 0xF548C4, 0x1
.incbin "baserom.nds", 0xF548C8, 0x1
.incbin "baserom.nds", 0xF548CC, 0x1
.incbin "baserom.nds", 0xF548D0, 0x1
.incbin "baserom.nds", 0xF548D4, 0x0
.incbin "baserom.nds", 0xF548D4, 0x1
.incbin "baserom.nds", 0xF548D8, 0x0
.incbin "baserom.nds", 0xF548D8, 0x1
.incbin "baserom.nds", 0xF548DC, 0x1
.incbin "baserom.nds", 0xF548E0, 0x1
.incbin "baserom.nds", 0xF548E4, 0x1
.incbin "baserom.nds", 0xF548E8, 0x1
.incbin "baserom.nds", 0xF548EC, 0x1
.incbin "baserom.nds", 0xF548F0, 0x1
.incbin "baserom.nds", 0xF548F4, 0x1
.incbin "baserom.nds", 0xF548F8, 0x1
.incbin "baserom.nds", 0xF548FC, 0x1
.incbin "baserom.nds", 0xF54900, 0x1
.incbin "baserom.nds", 0xF54904, 0x1
.incbin "baserom.nds", 0xF54908, 0x1
.incbin "baserom.nds", 0xF5490C, 0x1
.incbin "baserom.nds", 0xF54910, 0x1
.incbin "baserom.nds", 0xF54914, 0x1
.incbin "baserom.nds", 0xF54918, 0x1
.incbin "baserom.nds", 0xF5491C, 0x1
.incbin "baserom.nds", 0xF54920, 0x1
.incbin "baserom.nds", 0xF54924, 0x1
.incbin "baserom.nds", 0xF54928, 0x1
.incbin "baserom.nds", 0xF5492C, 0x1
.incbin "baserom.nds", 0xF54930, 0x1
.incbin "baserom.nds", 0xF54934, 0x1
.incbin "baserom.nds", 0xF54938, 0x1
.incbin "baserom.nds", 0xF5493C, 0x1
.incbin "baserom.nds", 0xF54940, 0x1
.incbin "baserom.nds", 0xF54944, 0x1
.incbin "baserom.nds", 0xF54948, 0x1
.incbin "baserom.nds", 0xF5494C, 0x1
.incbin "baserom.nds", 0xF54950, 0x1
.incbin "baserom.nds", 0xF54954, 0x1
.incbin "baserom.nds", 0xF54958, 0x1
.incbin "baserom.nds", 0xF5495C, 0x1
.incbin "baserom.nds", 0xF54960, 0x1
.incbin "baserom.nds", 0xF54964, 0x1
.incbin "baserom.nds", 0xF54968, 0x1
.incbin "baserom.nds", 0xF5496C, 0x1
.incbin "baserom.nds", 0xF54970, 0x1
.incbin "baserom.nds", 0xF54974, 0x1
.incbin "baserom.nds", 0xF54978, 0x1
.incbin "baserom.nds", 0xF5497C, 0x1
.incbin "baserom.nds", 0xF54980, 0x1
.incbin "baserom.nds", 0xF54984, 0x1
.incbin "baserom.nds", 0xF54988, 0x1
.incbin "baserom.nds", 0xF5498C, 0x0
.incbin "baserom.nds", 0xF5498C, 0x1
.incbin "baserom.nds", 0xF54990, 0x0
.incbin "baserom.nds", 0xF54990, 0x1
.incbin "baserom.nds", 0xF54994, 0x0
.incbin "baserom.nds", 0xF54994, 0x1
.incbin "baserom.nds", 0xF54998, 0x0
.incbin "baserom.nds", 0xF54998, 0x1
.incbin "baserom.nds", 0xF5499C, 0x1
.incbin "baserom.nds", 0xF549A0, 0x1
.incbin "baserom.nds", 0xF549A4, 0x1
.incbin "baserom.nds", 0xF549A8, 0x1
.incbin "baserom.nds", 0xF549AC, 0x1
.incbin "baserom.nds", 0xF549B0, 0x1
.incbin "baserom.nds", 0xF549B4, 0x1
.incbin "baserom.nds", 0xF549B8, 0x1
.incbin "baserom.nds", 0xF549BC, 0x1
.incbin "baserom.nds", 0xF549C0, 0x0
.incbin "baserom.nds", 0xF549C0, 0x1
.incbin "baserom.nds", 0xF549C4, 0x0
.incbin "baserom.nds", 0xF549C4, 0x0
.incbin "baserom.nds", 0xF549C4, 0x1
.incbin "baserom.nds", 0xF549C8, 0x0
.incbin "baserom.nds", 0xF549C8, 0x1
.incbin "baserom.nds", 0xF549CC, 0x0
.incbin "baserom.nds", 0xF549CC, 0x1
.incbin "baserom.nds", 0xF549D0, 0x0
.incbin "baserom.nds", 0xF549D0, 0x1
.incbin "baserom.nds", 0xF549D4, 0x0
.incbin "baserom.nds", 0xF549D4, 0x1
.incbin "baserom.nds", 0xF549D8, 0x0
.incbin "baserom.nds", 0xF549D8, 0x1
.incbin "baserom.nds", 0xF549DC, 0x0
.incbin "baserom.nds", 0xF549DC, 0x1
.incbin "baserom.nds", 0xF549E0, 0x0
.incbin "baserom.nds", 0xF549E0, 0x1
.incbin "baserom.nds", 0xF549E4, 0x0
.incbin "baserom.nds", 0xF549E4, 0x1
.incbin "baserom.nds", 0xF549E8, 0x0
.incbin "baserom.nds", 0xF549E8, 0x1
.incbin "baserom.nds", 0xF549EC, 0x0
.incbin "baserom.nds", 0xF549EC, 0x1
.incbin "baserom.nds", 0xF549F0, 0x0
.incbin "baserom.nds", 0xF549F0, 0x1
.incbin "baserom.nds", 0xF549F4, 0x1
.incbin "baserom.nds", 0xF549F8, 0x1
.incbin "baserom.nds", 0xF549FC, 0x1
.incbin "baserom.nds", 0xF54A00, 0x1
.incbin "baserom.nds", 0xF54A04, 0x0
.incbin "baserom.nds", 0xF54A04, 0x1
.incbin "baserom.nds", 0xF54A08, 0x0
.incbin "baserom.nds", 0xF54A08, 0x1
.incbin "baserom.nds", 0xF54A0C, 0x0
.incbin "baserom.nds", 0xF54A0C, 0x1
.incbin "baserom.nds", 0xF54A10, 0x0
.incbin "baserom.nds", 0xF54A10, 0x1
.incbin "baserom.nds", 0xF54A14, 0x1
.incbin "baserom.nds", 0xF54A18, 0x0
.incbin "baserom.nds", 0xF54A18, 0x1
.incbin "baserom.nds", 0xF54A1C, 0x0
.incbin "baserom.nds", 0xF54A1C, 0x0
.incbin "baserom.nds", 0xF54A1C, 0x1
.incbin "baserom.nds", 0xF54A20, 0x0
.incbin "baserom.nds", 0xF54A20, 0x1
.incbin "baserom.nds", 0xF54A24, 0x0
.incbin "baserom.nds", 0xF54A24, 0x1
.incbin "baserom.nds", 0xF54A28, 0x0
.incbin "baserom.nds", 0xF54A28, 0x1
.incbin "baserom.nds", 0xF54A2C, 0x0
.incbin "baserom.nds", 0xF54A2C, 0x1
.incbin "baserom.nds", 0xF54A30, 0x0
.incbin "baserom.nds", 0xF54A30, 0x1
.incbin "baserom.nds", 0xF54A34, 0x0
.incbin "baserom.nds", 0xF54A34, 0x1
.incbin "baserom.nds", 0xF54A38, 0x0
.incbin "baserom.nds", 0xF54A38, 0x1
.incbin "baserom.nds", 0xF54A3C, 0x0
.incbin "baserom.nds", 0xF54A3C, 0x1
.incbin "baserom.nds", 0xF54A40, 0x0
.incbin "baserom.nds", 0xF54A40, 0x1
|