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
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
|
.text
; NARC header
.ascii "NARC"
.short 0xFFFE ; byte order
.short 0x0100 ; version
.word 0x00B3BA74 ; size
.short 0x0010 ; chunk size
.short 3 ; number following chunks
; BTAF header
.ascii "BTAF"
.word 0x00005CAC ; chunk size
.short 2964 ; number of files
.balign 4
.word 0x00000000, 0x00001930
.word 0x00001930, 0x00003260
.word 0x00003260, 0x00004B90
.word 0x00004B90, 0x000064C0
.word 0x000064C0, 0x00006508
.word 0x00006508, 0x00006550
.word 0x00006550, 0x00007E80
.word 0x00007E80, 0x000097B0
.word 0x000097B0, 0x0000B0E0
.word 0x0000B0E0, 0x0000CA10
.word 0x0000CA10, 0x0000CA58
.word 0x0000CA58, 0x0000CAA0
.word 0x0000CAA0, 0x0000E3D0
.word 0x0000E3D0, 0x0000FD00
.word 0x0000FD00, 0x00011630
.word 0x00011630, 0x00012F60
.word 0x00012F60, 0x00012FA8
.word 0x00012FA8, 0x00012FF0
.word 0x00012FF0, 0x00014920
.word 0x00014920, 0x00016250
.word 0x00016250, 0x00017B80
.word 0x00017B80, 0x000194B0
.word 0x000194B0, 0x000194F8
.word 0x000194F8, 0x00019540
.word 0x00019540, 0x0001AE70
.word 0x0001AE70, 0x0001C7A0
.word 0x0001C7A0, 0x0001E0D0
.word 0x0001E0D0, 0x0001FA00
.word 0x0001FA00, 0x0001FA48
.word 0x0001FA48, 0x0001FA90
.word 0x0001FA90, 0x000213C0
.word 0x000213C0, 0x00022CF0
.word 0x00022CF0, 0x00024620
.word 0x00024620, 0x00025F50
.word 0x00025F50, 0x00025F98
.word 0x00025F98, 0x00025FE0
.word 0x00025FE0, 0x00027910
.word 0x00027910, 0x00029240
.word 0x00029240, 0x0002AB70
.word 0x0002AB70, 0x0002C4A0
.word 0x0002C4A0, 0x0002C4E8
.word 0x0002C4E8, 0x0002C530
.word 0x0002C530, 0x0002DE60
.word 0x0002DE60, 0x0002F790
.word 0x0002F790, 0x000310C0
.word 0x000310C0, 0x000329F0
.word 0x000329F0, 0x00032A38
.word 0x00032A38, 0x00032A80
.word 0x00032A80, 0x000343B0
.word 0x000343B0, 0x00035CE0
.word 0x00035CE0, 0x00037610
.word 0x00037610, 0x00038F40
.word 0x00038F40, 0x00038F88
.word 0x00038F88, 0x00038FD0
.word 0x00038FD0, 0x0003A900
.word 0x0003A900, 0x0003C230
.word 0x0003C230, 0x0003DB60
.word 0x0003DB60, 0x0003F490
.word 0x0003F490, 0x0003F4D8
.word 0x0003F4D8, 0x0003F520
.word 0x0003F520, 0x00040E50
.word 0x00040E50, 0x00042780
.word 0x00042780, 0x000440B0
.word 0x000440B0, 0x000459E0
.word 0x000459E0, 0x00045A28
.word 0x00045A28, 0x00045A70
.word 0x00045A70, 0x000473A0
.word 0x000473A0, 0x00048CD0
.word 0x00048CD0, 0x0004A600
.word 0x0004A600, 0x0004BF30
.word 0x0004BF30, 0x0004BF78
.word 0x0004BF78, 0x0004BFC0
.word 0x0004BFC0, 0x0004D8F0
.word 0x0004D8F0, 0x0004F220
.word 0x0004F220, 0x00050B50
.word 0x00050B50, 0x00052480
.word 0x00052480, 0x000524C8
.word 0x000524C8, 0x00052510
.word 0x00052510, 0x00053E40
.word 0x00053E40, 0x00055770
.word 0x00055770, 0x000570A0
.word 0x000570A0, 0x000589D0
.word 0x000589D0, 0x00058A18
.word 0x00058A18, 0x00058A60
.word 0x00058A60, 0x0005A390
.word 0x0005A390, 0x0005BCC0
.word 0x0005BCC0, 0x0005D5F0
.word 0x0005D5F0, 0x0005EF20
.word 0x0005EF20, 0x0005EF68
.word 0x0005EF68, 0x0005EFB0
.word 0x0005EFB0, 0x000608E0
.word 0x000608E0, 0x00062210
.word 0x00062210, 0x00063B40
.word 0x00063B40, 0x00065470
.word 0x00065470, 0x000654B8
.word 0x000654B8, 0x00065500
.word 0x00065500, 0x00066E30
.word 0x00066E30, 0x00068760
.word 0x00068760, 0x0006A090
.word 0x0006A090, 0x0006B9C0
.word 0x0006B9C0, 0x0006BA08
.word 0x0006BA08, 0x0006BA50
.word 0x0006BA50, 0x0006D380
.word 0x0006D380, 0x0006ECB0
.word 0x0006ECB0, 0x000705E0
.word 0x000705E0, 0x00071F10
.word 0x00071F10, 0x00071F58
.word 0x00071F58, 0x00071FA0
.word 0x00071FA0, 0x000738D0
.word 0x000738D0, 0x00075200
.word 0x00075200, 0x00076B30
.word 0x00076B30, 0x00078460
.word 0x00078460, 0x000784A8
.word 0x000784A8, 0x000784F0
.word 0x000784F0, 0x00079E20
.word 0x00079E20, 0x0007B750
.word 0x0007B750, 0x0007D080
.word 0x0007D080, 0x0007E9B0
.word 0x0007E9B0, 0x0007E9F8
.word 0x0007E9F8, 0x0007EA40
.word 0x0007EA40, 0x00080370
.word 0x00080370, 0x00081CA0
.word 0x00081CA0, 0x000835D0
.word 0x000835D0, 0x00084F00
.word 0x00084F00, 0x00084F48
.word 0x00084F48, 0x00084F90
.word 0x00084F90, 0x000868C0
.word 0x000868C0, 0x000881F0
.word 0x000881F0, 0x00089B20
.word 0x00089B20, 0x0008B450
.word 0x0008B450, 0x0008B498
.word 0x0008B498, 0x0008B4E0
.word 0x0008B4E0, 0x0008CE10
.word 0x0008CE10, 0x0008E740
.word 0x0008E740, 0x00090070
.word 0x00090070, 0x000919A0
.word 0x000919A0, 0x000919E8
.word 0x000919E8, 0x00091A30
.word 0x00091A30, 0x00093360
.word 0x00093360, 0x00094C90
.word 0x00094C90, 0x000965C0
.word 0x000965C0, 0x00097EF0
.word 0x00097EF0, 0x00097F38
.word 0x00097F38, 0x00097F80
.word 0x00097F80, 0x000998B0
.word 0x000998B0, 0x0009B1E0
.word 0x0009B1E0, 0x0009CB10
.word 0x0009CB10, 0x0009E440
.word 0x0009E440, 0x0009E488
.word 0x0009E488, 0x0009E4D0
.word 0x0009E4D0, 0x0009FE00
.word 0x0009FE00, 0x000A1730
.word 0x000A1730, 0x000A3060
.word 0x000A3060, 0x000A4990
.word 0x000A4990, 0x000A49D8
.word 0x000A49D8, 0x000A4A20
.word 0x000A4A20, 0x000A6350
.word 0x000A6350, 0x000A7C80
.word 0x000A7C80, 0x000A95B0
.word 0x000A95B0, 0x000AAEE0
.word 0x000AAEE0, 0x000AAF28
.word 0x000AAF28, 0x000AAF70
.word 0x000AAF70, 0x000AC8A0
.word 0x000AC8A0, 0x000AE1D0
.word 0x000AE1D0, 0x000AFB00
.word 0x000AFB00, 0x000B1430
.word 0x000B1430, 0x000B1478
.word 0x000B1478, 0x000B14C0
.word 0x000B14C0, 0x000B2DF0
.word 0x000B2DF0, 0x000B4720
.word 0x000B4720, 0x000B6050
.word 0x000B6050, 0x000B7980
.word 0x000B7980, 0x000B79C8
.word 0x000B79C8, 0x000B7A10
.word 0x000B7A10, 0x000B9340
.word 0x000B9340, 0x000B9340
.word 0x000B9340, 0x000BAC70
.word 0x000BAC70, 0x000BAC70
.word 0x000BAC70, 0x000BACB8
.word 0x000BACB8, 0x000BAD00
.word 0x000BAD00, 0x000BC630
.word 0x000BC630, 0x000BC630
.word 0x000BC630, 0x000BDF60
.word 0x000BDF60, 0x000BDF60
.word 0x000BDF60, 0x000BDFA8
.word 0x000BDFA8, 0x000BDFF0
.word 0x000BDFF0, 0x000BF920
.word 0x000BF920, 0x000BF920
.word 0x000BF920, 0x000C1250
.word 0x000C1250, 0x000C1250
.word 0x000C1250, 0x000C1298
.word 0x000C1298, 0x000C12E0
.word 0x000C12E0, 0x000C12E0
.word 0x000C12E0, 0x000C2C10
.word 0x000C2C10, 0x000C2C10
.word 0x000C2C10, 0x000C4540
.word 0x000C4540, 0x000C4588
.word 0x000C4588, 0x000C45D0
.word 0x000C45D0, 0x000C45D0
.word 0x000C45D0, 0x000C5F00
.word 0x000C5F00, 0x000C5F00
.word 0x000C5F00, 0x000C7830
.word 0x000C7830, 0x000C7878
.word 0x000C7878, 0x000C78C0
.word 0x000C78C0, 0x000C78C0
.word 0x000C78C0, 0x000C91F0
.word 0x000C91F0, 0x000C91F0
.word 0x000C91F0, 0x000CAB20
.word 0x000CAB20, 0x000CAB68
.word 0x000CAB68, 0x000CABB0
.word 0x000CABB0, 0x000CC4E0
.word 0x000CC4E0, 0x000CDE10
.word 0x000CDE10, 0x000CF740
.word 0x000CF740, 0x000D1070
.word 0x000D1070, 0x000D10B8
.word 0x000D10B8, 0x000D1100
.word 0x000D1100, 0x000D2A30
.word 0x000D2A30, 0x000D4360
.word 0x000D4360, 0x000D5C90
.word 0x000D5C90, 0x000D75C0
.word 0x000D75C0, 0x000D7608
.word 0x000D7608, 0x000D7650
.word 0x000D7650, 0x000D8F80
.word 0x000D8F80, 0x000DA8B0
.word 0x000DA8B0, 0x000DC1E0
.word 0x000DC1E0, 0x000DDB10
.word 0x000DDB10, 0x000DDB58
.word 0x000DDB58, 0x000DDBA0
.word 0x000DDBA0, 0x000DF4D0
.word 0x000DF4D0, 0x000E0E00
.word 0x000E0E00, 0x000E2730
.word 0x000E2730, 0x000E4060
.word 0x000E4060, 0x000E40A8
.word 0x000E40A8, 0x000E40F0
.word 0x000E40F0, 0x000E5A20
.word 0x000E5A20, 0x000E7350
.word 0x000E7350, 0x000E8C80
.word 0x000E8C80, 0x000EA5B0
.word 0x000EA5B0, 0x000EA5F8
.word 0x000EA5F8, 0x000EA640
.word 0x000EA640, 0x000EBF70
.word 0x000EBF70, 0x000ED8A0
.word 0x000ED8A0, 0x000EF1D0
.word 0x000EF1D0, 0x000F0B00
.word 0x000F0B00, 0x000F0B48
.word 0x000F0B48, 0x000F0B90
.word 0x000F0B90, 0x000F24C0
.word 0x000F24C0, 0x000F3DF0
.word 0x000F3DF0, 0x000F5720
.word 0x000F5720, 0x000F7050
.word 0x000F7050, 0x000F7098
.word 0x000F7098, 0x000F70E0
.word 0x000F70E0, 0x000F8A10
.word 0x000F8A10, 0x000FA340
.word 0x000FA340, 0x000FBC70
.word 0x000FBC70, 0x000FD5A0
.word 0x000FD5A0, 0x000FD5E8
.word 0x000FD5E8, 0x000FD630
.word 0x000FD630, 0x000FEF60
.word 0x000FEF60, 0x00100890
.word 0x00100890, 0x001021C0
.word 0x001021C0, 0x00103AF0
.word 0x00103AF0, 0x00103B38
.word 0x00103B38, 0x00103B80
.word 0x00103B80, 0x001054B0
.word 0x001054B0, 0x00106DE0
.word 0x00106DE0, 0x00108710
.word 0x00108710, 0x0010A040
.word 0x0010A040, 0x0010A088
.word 0x0010A088, 0x0010A0D0
.word 0x0010A0D0, 0x0010BA00
.word 0x0010BA00, 0x0010D330
.word 0x0010D330, 0x0010EC60
.word 0x0010EC60, 0x00110590
.word 0x00110590, 0x001105D8
.word 0x001105D8, 0x00110620
.word 0x00110620, 0x00111F50
.word 0x00111F50, 0x00113880
.word 0x00113880, 0x001151B0
.word 0x001151B0, 0x00116AE0
.word 0x00116AE0, 0x00116B28
.word 0x00116B28, 0x00116B70
.word 0x00116B70, 0x001184A0
.word 0x001184A0, 0x00119DD0
.word 0x00119DD0, 0x0011B700
.word 0x0011B700, 0x0011D030
.word 0x0011D030, 0x0011D078
.word 0x0011D078, 0x0011D0C0
.word 0x0011D0C0, 0x0011E9F0
.word 0x0011E9F0, 0x00120320
.word 0x00120320, 0x00121C50
.word 0x00121C50, 0x00123580
.word 0x00123580, 0x001235C8
.word 0x001235C8, 0x00123610
.word 0x00123610, 0x00124F40
.word 0x00124F40, 0x00126870
.word 0x00126870, 0x001281A0
.word 0x001281A0, 0x00129AD0
.word 0x00129AD0, 0x00129B18
.word 0x00129B18, 0x00129B60
.word 0x00129B60, 0x0012B490
.word 0x0012B490, 0x0012CDC0
.word 0x0012CDC0, 0x0012E6F0
.word 0x0012E6F0, 0x00130020
.word 0x00130020, 0x00130068
.word 0x00130068, 0x001300B0
.word 0x001300B0, 0x001319E0
.word 0x001319E0, 0x00133310
.word 0x00133310, 0x00134C40
.word 0x00134C40, 0x00136570
.word 0x00136570, 0x001365B8
.word 0x001365B8, 0x00136600
.word 0x00136600, 0x00137F30
.word 0x00137F30, 0x00139860
.word 0x00139860, 0x0013B190
.word 0x0013B190, 0x0013CAC0
.word 0x0013CAC0, 0x0013CB08
.word 0x0013CB08, 0x0013CB50
.word 0x0013CB50, 0x0013E480
.word 0x0013E480, 0x0013FDB0
.word 0x0013FDB0, 0x001416E0
.word 0x001416E0, 0x00143010
.word 0x00143010, 0x00143058
.word 0x00143058, 0x001430A0
.word 0x001430A0, 0x001449D0
.word 0x001449D0, 0x00146300
.word 0x00146300, 0x00147C30
.word 0x00147C30, 0x00149560
.word 0x00149560, 0x001495A8
.word 0x001495A8, 0x001495F0
.word 0x001495F0, 0x0014AF20
.word 0x0014AF20, 0x0014C850
.word 0x0014C850, 0x0014E180
.word 0x0014E180, 0x0014FAB0
.word 0x0014FAB0, 0x0014FAF8
.word 0x0014FAF8, 0x0014FB40
.word 0x0014FB40, 0x00151470
.word 0x00151470, 0x00152DA0
.word 0x00152DA0, 0x001546D0
.word 0x001546D0, 0x00156000
.word 0x00156000, 0x00156048
.word 0x00156048, 0x00156090
.word 0x00156090, 0x001579C0
.word 0x001579C0, 0x001592F0
.word 0x001592F0, 0x0015AC20
.word 0x0015AC20, 0x0015C550
.word 0x0015C550, 0x0015C598
.word 0x0015C598, 0x0015C5E0
.word 0x0015C5E0, 0x0015DF10
.word 0x0015DF10, 0x0015F840
.word 0x0015F840, 0x00161170
.word 0x00161170, 0x00162AA0
.word 0x00162AA0, 0x00162AE8
.word 0x00162AE8, 0x00162B30
.word 0x00162B30, 0x00164460
.word 0x00164460, 0x00165D90
.word 0x00165D90, 0x001676C0
.word 0x001676C0, 0x00168FF0
.word 0x00168FF0, 0x00169038
.word 0x00169038, 0x00169080
.word 0x00169080, 0x0016A9B0
.word 0x0016A9B0, 0x0016C2E0
.word 0x0016C2E0, 0x0016DC10
.word 0x0016DC10, 0x0016F540
.word 0x0016F540, 0x0016F588
.word 0x0016F588, 0x0016F5D0
.word 0x0016F5D0, 0x00170F00
.word 0x00170F00, 0x00172830
.word 0x00172830, 0x00174160
.word 0x00174160, 0x00175A90
.word 0x00175A90, 0x00175AD8
.word 0x00175AD8, 0x00175B20
.word 0x00175B20, 0x00177450
.word 0x00177450, 0x00178D80
.word 0x00178D80, 0x0017A6B0
.word 0x0017A6B0, 0x0017BFE0
.word 0x0017BFE0, 0x0017C028
.word 0x0017C028, 0x0017C070
.word 0x0017C070, 0x0017D9A0
.word 0x0017D9A0, 0x0017F2D0
.word 0x0017F2D0, 0x00180C00
.word 0x00180C00, 0x00182530
.word 0x00182530, 0x00182578
.word 0x00182578, 0x001825C0
.word 0x001825C0, 0x00183EF0
.word 0x00183EF0, 0x00185820
.word 0x00185820, 0x00187150
.word 0x00187150, 0x00188A80
.word 0x00188A80, 0x00188AC8
.word 0x00188AC8, 0x00188B10
.word 0x00188B10, 0x0018A440
.word 0x0018A440, 0x0018BD70
.word 0x0018BD70, 0x0018D6A0
.word 0x0018D6A0, 0x0018EFD0
.word 0x0018EFD0, 0x0018F018
.word 0x0018F018, 0x0018F060
.word 0x0018F060, 0x00190990
.word 0x00190990, 0x001922C0
.word 0x001922C0, 0x00193BF0
.word 0x00193BF0, 0x00195520
.word 0x00195520, 0x00195568
.word 0x00195568, 0x001955B0
.word 0x001955B0, 0x00196EE0
.word 0x00196EE0, 0x00198810
.word 0x00198810, 0x0019A140
.word 0x0019A140, 0x0019BA70
.word 0x0019BA70, 0x0019BAB8
.word 0x0019BAB8, 0x0019BB00
.word 0x0019BB00, 0x0019D430
.word 0x0019D430, 0x0019ED60
.word 0x0019ED60, 0x001A0690
.word 0x001A0690, 0x001A1FC0
.word 0x001A1FC0, 0x001A2008
.word 0x001A2008, 0x001A2050
.word 0x001A2050, 0x001A3980
.word 0x001A3980, 0x001A52B0
.word 0x001A52B0, 0x001A6BE0
.word 0x001A6BE0, 0x001A8510
.word 0x001A8510, 0x001A8558
.word 0x001A8558, 0x001A85A0
.word 0x001A85A0, 0x001A9ED0
.word 0x001A9ED0, 0x001AB800
.word 0x001AB800, 0x001AD130
.word 0x001AD130, 0x001AEA60
.word 0x001AEA60, 0x001AEAA8
.word 0x001AEAA8, 0x001AEAF0
.word 0x001AEAF0, 0x001B0420
.word 0x001B0420, 0x001B1D50
.word 0x001B1D50, 0x001B3680
.word 0x001B3680, 0x001B4FB0
.word 0x001B4FB0, 0x001B4FF8
.word 0x001B4FF8, 0x001B5040
.word 0x001B5040, 0x001B6970
.word 0x001B6970, 0x001B82A0
.word 0x001B82A0, 0x001B9BD0
.word 0x001B9BD0, 0x001BB500
.word 0x001BB500, 0x001BB548
.word 0x001BB548, 0x001BB590
.word 0x001BB590, 0x001BCEC0
.word 0x001BCEC0, 0x001BE7F0
.word 0x001BE7F0, 0x001C0120
.word 0x001C0120, 0x001C1A50
.word 0x001C1A50, 0x001C1A98
.word 0x001C1A98, 0x001C1AE0
.word 0x001C1AE0, 0x001C3410
.word 0x001C3410, 0x001C4D40
.word 0x001C4D40, 0x001C6670
.word 0x001C6670, 0x001C7FA0
.word 0x001C7FA0, 0x001C7FE8
.word 0x001C7FE8, 0x001C8030
.word 0x001C8030, 0x001C9960
.word 0x001C9960, 0x001CB290
.word 0x001CB290, 0x001CCBC0
.word 0x001CCBC0, 0x001CE4F0
.word 0x001CE4F0, 0x001CE538
.word 0x001CE538, 0x001CE580
.word 0x001CE580, 0x001CFEB0
.word 0x001CFEB0, 0x001D17E0
.word 0x001D17E0, 0x001D3110
.word 0x001D3110, 0x001D4A40
.word 0x001D4A40, 0x001D4A88
.word 0x001D4A88, 0x001D4AD0
.word 0x001D4AD0, 0x001D6400
.word 0x001D6400, 0x001D7D30
.word 0x001D7D30, 0x001D9660
.word 0x001D9660, 0x001DAF90
.word 0x001DAF90, 0x001DAFD8
.word 0x001DAFD8, 0x001DB020
.word 0x001DB020, 0x001DC950
.word 0x001DC950, 0x001DE280
.word 0x001DE280, 0x001DFBB0
.word 0x001DFBB0, 0x001E14E0
.word 0x001E14E0, 0x001E1528
.word 0x001E1528, 0x001E1570
.word 0x001E1570, 0x001E2EA0
.word 0x001E2EA0, 0x001E47D0
.word 0x001E47D0, 0x001E6100
.word 0x001E6100, 0x001E7A30
.word 0x001E7A30, 0x001E7A78
.word 0x001E7A78, 0x001E7AC0
.word 0x001E7AC0, 0x001E93F0
.word 0x001E93F0, 0x001EAD20
.word 0x001EAD20, 0x001EC650
.word 0x001EC650, 0x001EDF80
.word 0x001EDF80, 0x001EDFC8
.word 0x001EDFC8, 0x001EE010
.word 0x001EE010, 0x001EE010
.word 0x001EE010, 0x001EF940
.word 0x001EF940, 0x001EF940
.word 0x001EF940, 0x001F1270
.word 0x001F1270, 0x001F12B8
.word 0x001F12B8, 0x001F1300
.word 0x001F1300, 0x001F1300
.word 0x001F1300, 0x001F2C30
.word 0x001F2C30, 0x001F2C30
.word 0x001F2C30, 0x001F4560
.word 0x001F4560, 0x001F45A8
.word 0x001F45A8, 0x001F45F0
.word 0x001F45F0, 0x001F5F20
.word 0x001F5F20, 0x001F7850
.word 0x001F7850, 0x001F9180
.word 0x001F9180, 0x001FAAB0
.word 0x001FAAB0, 0x001FAAF8
.word 0x001FAAF8, 0x001FAB40
.word 0x001FAB40, 0x001FC470
.word 0x001FC470, 0x001FDDA0
.word 0x001FDDA0, 0x001FF6D0
.word 0x001FF6D0, 0x00201000
.word 0x00201000, 0x00201048
.word 0x00201048, 0x00201090
.word 0x00201090, 0x002029C0
.word 0x002029C0, 0x002042F0
.word 0x002042F0, 0x00205C20
.word 0x00205C20, 0x00207550
.word 0x00207550, 0x00207598
.word 0x00207598, 0x002075E0
.word 0x002075E0, 0x00208F10
.word 0x00208F10, 0x0020A840
.word 0x0020A840, 0x0020C170
.word 0x0020C170, 0x0020DAA0
.word 0x0020DAA0, 0x0020DAE8
.word 0x0020DAE8, 0x0020DB30
.word 0x0020DB30, 0x0020F460
.word 0x0020F460, 0x00210D90
.word 0x00210D90, 0x002126C0
.word 0x002126C0, 0x00213FF0
.word 0x00213FF0, 0x00214038
.word 0x00214038, 0x00214080
.word 0x00214080, 0x002159B0
.word 0x002159B0, 0x002172E0
.word 0x002172E0, 0x00218C10
.word 0x00218C10, 0x0021A540
.word 0x0021A540, 0x0021A588
.word 0x0021A588, 0x0021A5D0
.word 0x0021A5D0, 0x0021BF00
.word 0x0021BF00, 0x0021D830
.word 0x0021D830, 0x0021F160
.word 0x0021F160, 0x00220A90
.word 0x00220A90, 0x00220AD8
.word 0x00220AD8, 0x00220B20
.word 0x00220B20, 0x00222450
.word 0x00222450, 0x00223D80
.word 0x00223D80, 0x002256B0
.word 0x002256B0, 0x00226FE0
.word 0x00226FE0, 0x00227028
.word 0x00227028, 0x00227070
.word 0x00227070, 0x002289A0
.word 0x002289A0, 0x0022A2D0
.word 0x0022A2D0, 0x0022BC00
.word 0x0022BC00, 0x0022D530
.word 0x0022D530, 0x0022D578
.word 0x0022D578, 0x0022D5C0
.word 0x0022D5C0, 0x0022EEF0
.word 0x0022EEF0, 0x00230820
.word 0x00230820, 0x00232150
.word 0x00232150, 0x00233A80
.word 0x00233A80, 0x00233AC8
.word 0x00233AC8, 0x00233B10
.word 0x00233B10, 0x00235440
.word 0x00235440, 0x00236D70
.word 0x00236D70, 0x002386A0
.word 0x002386A0, 0x00239FD0
.word 0x00239FD0, 0x0023A018
.word 0x0023A018, 0x0023A060
.word 0x0023A060, 0x0023B990
.word 0x0023B990, 0x0023D2C0
.word 0x0023D2C0, 0x0023EBF0
.word 0x0023EBF0, 0x00240520
.word 0x00240520, 0x00240568
.word 0x00240568, 0x002405B0
.word 0x002405B0, 0x00241EE0
.word 0x00241EE0, 0x00243810
.word 0x00243810, 0x00245140
.word 0x00245140, 0x00246A70
.word 0x00246A70, 0x00246AB8
.word 0x00246AB8, 0x00246B00
.word 0x00246B00, 0x00248430
.word 0x00248430, 0x00249D60
.word 0x00249D60, 0x0024B690
.word 0x0024B690, 0x0024CFC0
.word 0x0024CFC0, 0x0024D008
.word 0x0024D008, 0x0024D050
.word 0x0024D050, 0x0024E980
.word 0x0024E980, 0x002502B0
.word 0x002502B0, 0x00251BE0
.word 0x00251BE0, 0x00253510
.word 0x00253510, 0x00253558
.word 0x00253558, 0x002535A0
.word 0x002535A0, 0x00254ED0
.word 0x00254ED0, 0x00256800
.word 0x00256800, 0x00258130
.word 0x00258130, 0x00259A60
.word 0x00259A60, 0x00259AA8
.word 0x00259AA8, 0x00259AF0
.word 0x00259AF0, 0x0025B420
.word 0x0025B420, 0x0025CD50
.word 0x0025CD50, 0x0025E680
.word 0x0025E680, 0x0025FFB0
.word 0x0025FFB0, 0x0025FFF8
.word 0x0025FFF8, 0x00260040
.word 0x00260040, 0x00260040
.word 0x00260040, 0x00261970
.word 0x00261970, 0x00261970
.word 0x00261970, 0x002632A0
.word 0x002632A0, 0x002632E8
.word 0x002632E8, 0x00263330
.word 0x00263330, 0x00263330
.word 0x00263330, 0x00264C60
.word 0x00264C60, 0x00264C60
.word 0x00264C60, 0x00266590
.word 0x00266590, 0x002665D8
.word 0x002665D8, 0x00266620
.word 0x00266620, 0x00267F50
.word 0x00267F50, 0x00269880
.word 0x00269880, 0x0026B1B0
.word 0x0026B1B0, 0x0026CAE0
.word 0x0026CAE0, 0x0026CB28
.word 0x0026CB28, 0x0026CB70
.word 0x0026CB70, 0x0026E4A0
.word 0x0026E4A0, 0x0026FDD0
.word 0x0026FDD0, 0x00271700
.word 0x00271700, 0x00273030
.word 0x00273030, 0x00273078
.word 0x00273078, 0x002730C0
.word 0x002730C0, 0x002749F0
.word 0x002749F0, 0x00276320
.word 0x00276320, 0x00277C50
.word 0x00277C50, 0x00279580
.word 0x00279580, 0x002795C8
.word 0x002795C8, 0x00279610
.word 0x00279610, 0x0027AF40
.word 0x0027AF40, 0x0027C870
.word 0x0027C870, 0x0027E1A0
.word 0x0027E1A0, 0x0027FAD0
.word 0x0027FAD0, 0x0027FB18
.word 0x0027FB18, 0x0027FB60
.word 0x0027FB60, 0x0027FB60
.word 0x0027FB60, 0x00281490
.word 0x00281490, 0x00281490
.word 0x00281490, 0x00282DC0
.word 0x00282DC0, 0x00282E08
.word 0x00282E08, 0x00282E50
.word 0x00282E50, 0x00282E50
.word 0x00282E50, 0x00284780
.word 0x00284780, 0x00284780
.word 0x00284780, 0x002860B0
.word 0x002860B0, 0x002860F8
.word 0x002860F8, 0x00286140
.word 0x00286140, 0x00287A70
.word 0x00287A70, 0x002893A0
.word 0x002893A0, 0x0028ACD0
.word 0x0028ACD0, 0x0028C600
.word 0x0028C600, 0x0028C648
.word 0x0028C648, 0x0028C690
.word 0x0028C690, 0x0028DFC0
.word 0x0028DFC0, 0x0028F8F0
.word 0x0028F8F0, 0x00291220
.word 0x00291220, 0x00292B50
.word 0x00292B50, 0x00292B98
.word 0x00292B98, 0x00292BE0
.word 0x00292BE0, 0x00294510
.word 0x00294510, 0x00295E40
.word 0x00295E40, 0x00297770
.word 0x00297770, 0x002990A0
.word 0x002990A0, 0x002990E8
.word 0x002990E8, 0x00299130
.word 0x00299130, 0x0029AA60
.word 0x0029AA60, 0x0029C390
.word 0x0029C390, 0x0029DCC0
.word 0x0029DCC0, 0x0029F5F0
.word 0x0029F5F0, 0x0029F638
.word 0x0029F638, 0x0029F680
.word 0x0029F680, 0x002A0FB0
.word 0x002A0FB0, 0x002A28E0
.word 0x002A28E0, 0x002A4210
.word 0x002A4210, 0x002A5B40
.word 0x002A5B40, 0x002A5B88
.word 0x002A5B88, 0x002A5BD0
.word 0x002A5BD0, 0x002A7500
.word 0x002A7500, 0x002A7500
.word 0x002A7500, 0x002A8E30
.word 0x002A8E30, 0x002A8E30
.word 0x002A8E30, 0x002A8E78
.word 0x002A8E78, 0x002A8EC0
.word 0x002A8EC0, 0x002AA7F0
.word 0x002AA7F0, 0x002AC120
.word 0x002AC120, 0x002ADA50
.word 0x002ADA50, 0x002AF380
.word 0x002AF380, 0x002AF3C8
.word 0x002AF3C8, 0x002AF410
.word 0x002AF410, 0x002B0D40
.word 0x002B0D40, 0x002B0D40
.word 0x002B0D40, 0x002B2670
.word 0x002B2670, 0x002B2670
.word 0x002B2670, 0x002B26B8
.word 0x002B26B8, 0x002B2700
.word 0x002B2700, 0x002B4030
.word 0x002B4030, 0x002B5960
.word 0x002B5960, 0x002B7290
.word 0x002B7290, 0x002B8BC0
.word 0x002B8BC0, 0x002B8C08
.word 0x002B8C08, 0x002B8C50
.word 0x002B8C50, 0x002BA580
.word 0x002BA580, 0x002BBEB0
.word 0x002BBEB0, 0x002BD7E0
.word 0x002BD7E0, 0x002BF110
.word 0x002BF110, 0x002BF158
.word 0x002BF158, 0x002BF1A0
.word 0x002BF1A0, 0x002C0AD0
.word 0x002C0AD0, 0x002C2400
.word 0x002C2400, 0x002C3D30
.word 0x002C3D30, 0x002C5660
.word 0x002C5660, 0x002C56A8
.word 0x002C56A8, 0x002C56F0
.word 0x002C56F0, 0x002C7020
.word 0x002C7020, 0x002C8950
.word 0x002C8950, 0x002CA280
.word 0x002CA280, 0x002CBBB0
.word 0x002CBBB0, 0x002CBBF8
.word 0x002CBBF8, 0x002CBC40
.word 0x002CBC40, 0x002CBC40
.word 0x002CBC40, 0x002CD570
.word 0x002CD570, 0x002CD570
.word 0x002CD570, 0x002CEEA0
.word 0x002CEEA0, 0x002CEEE8
.word 0x002CEEE8, 0x002CEF30
.word 0x002CEF30, 0x002CEF30
.word 0x002CEF30, 0x002D0860
.word 0x002D0860, 0x002D0860
.word 0x002D0860, 0x002D2190
.word 0x002D2190, 0x002D21D8
.word 0x002D21D8, 0x002D2220
.word 0x002D2220, 0x002D3B50
.word 0x002D3B50, 0x002D5480
.word 0x002D5480, 0x002D6DB0
.word 0x002D6DB0, 0x002D86E0
.word 0x002D86E0, 0x002D8728
.word 0x002D8728, 0x002D8770
.word 0x002D8770, 0x002DA0A0
.word 0x002DA0A0, 0x002DB9D0
.word 0x002DB9D0, 0x002DD300
.word 0x002DD300, 0x002DEC30
.word 0x002DEC30, 0x002DEC78
.word 0x002DEC78, 0x002DECC0
.word 0x002DECC0, 0x002E05F0
.word 0x002E05F0, 0x002E05F0
.word 0x002E05F0, 0x002E1F20
.word 0x002E1F20, 0x002E1F20
.word 0x002E1F20, 0x002E1F68
.word 0x002E1F68, 0x002E1FB0
.word 0x002E1FB0, 0x002E38E0
.word 0x002E38E0, 0x002E5210
.word 0x002E5210, 0x002E6B40
.word 0x002E6B40, 0x002E8470
.word 0x002E8470, 0x002E84B8
.word 0x002E84B8, 0x002E8500
.word 0x002E8500, 0x002E9E30
.word 0x002E9E30, 0x002EB760
.word 0x002EB760, 0x002ED090
.word 0x002ED090, 0x002EE9C0
.word 0x002EE9C0, 0x002EEA08
.word 0x002EEA08, 0x002EEA50
.word 0x002EEA50, 0x002F0380
.word 0x002F0380, 0x002F1CB0
.word 0x002F1CB0, 0x002F35E0
.word 0x002F35E0, 0x002F4F10
.word 0x002F4F10, 0x002F4F58
.word 0x002F4F58, 0x002F4FA0
.word 0x002F4FA0, 0x002F4FA0
.word 0x002F4FA0, 0x002F68D0
.word 0x002F68D0, 0x002F68D0
.word 0x002F68D0, 0x002F8200
.word 0x002F8200, 0x002F8248
.word 0x002F8248, 0x002F8290
.word 0x002F8290, 0x002F9BC0
.word 0x002F9BC0, 0x002FB4F0
.word 0x002FB4F0, 0x002FCE20
.word 0x002FCE20, 0x002FE750
.word 0x002FE750, 0x002FE798
.word 0x002FE798, 0x002FE7E0
.word 0x002FE7E0, 0x00300110
.word 0x00300110, 0x00301A40
.word 0x00301A40, 0x00303370
.word 0x00303370, 0x00304CA0
.word 0x00304CA0, 0x00304CE8
.word 0x00304CE8, 0x00304D30
.word 0x00304D30, 0x00306660
.word 0x00306660, 0x00307F90
.word 0x00307F90, 0x003098C0
.word 0x003098C0, 0x0030B1F0
.word 0x0030B1F0, 0x0030B238
.word 0x0030B238, 0x0030B280
.word 0x0030B280, 0x0030B280
.word 0x0030B280, 0x0030CBB0
.word 0x0030CBB0, 0x0030CBB0
.word 0x0030CBB0, 0x0030E4E0
.word 0x0030E4E0, 0x0030E528
.word 0x0030E528, 0x0030E570
.word 0x0030E570, 0x0030FEA0
.word 0x0030FEA0, 0x003117D0
.word 0x003117D0, 0x00313100
.word 0x00313100, 0x00314A30
.word 0x00314A30, 0x00314A78
.word 0x00314A78, 0x00314AC0
.word 0x00314AC0, 0x003163F0
.word 0x003163F0, 0x00317D20
.word 0x00317D20, 0x00319650
.word 0x00319650, 0x0031AF80
.word 0x0031AF80, 0x0031AFC8
.word 0x0031AFC8, 0x0031B010
.word 0x0031B010, 0x0031C940
.word 0x0031C940, 0x0031E270
.word 0x0031E270, 0x0031FBA0
.word 0x0031FBA0, 0x003214D0
.word 0x003214D0, 0x00321518
.word 0x00321518, 0x00321560
.word 0x00321560, 0x00322E90
.word 0x00322E90, 0x003247C0
.word 0x003247C0, 0x003260F0
.word 0x003260F0, 0x00327A20
.word 0x00327A20, 0x00327A68
.word 0x00327A68, 0x00327AB0
.word 0x00327AB0, 0x00327AB0
.word 0x00327AB0, 0x003293E0
.word 0x003293E0, 0x003293E0
.word 0x003293E0, 0x0032AD10
.word 0x0032AD10, 0x0032AD58
.word 0x0032AD58, 0x0032ADA0
.word 0x0032ADA0, 0x0032C6D0
.word 0x0032C6D0, 0x0032E000
.word 0x0032E000, 0x0032F930
.word 0x0032F930, 0x00331260
.word 0x00331260, 0x003312A8
.word 0x003312A8, 0x003312F0
.word 0x003312F0, 0x00332C20
.word 0x00332C20, 0x00334550
.word 0x00334550, 0x00335E80
.word 0x00335E80, 0x003377B0
.word 0x003377B0, 0x003377F8
.word 0x003377F8, 0x00337840
.word 0x00337840, 0x00339170
.word 0x00339170, 0x0033AAA0
.word 0x0033AAA0, 0x0033C3D0
.word 0x0033C3D0, 0x0033DD00
.word 0x0033DD00, 0x0033DD48
.word 0x0033DD48, 0x0033DD90
.word 0x0033DD90, 0x0033F6C0
.word 0x0033F6C0, 0x00340FF0
.word 0x00340FF0, 0x00342920
.word 0x00342920, 0x00344250
.word 0x00344250, 0x00344298
.word 0x00344298, 0x003442E0
.word 0x003442E0, 0x00345C10
.word 0x00345C10, 0x00347540
.word 0x00347540, 0x00348E70
.word 0x00348E70, 0x0034A7A0
.word 0x0034A7A0, 0x0034A7E8
.word 0x0034A7E8, 0x0034A830
.word 0x0034A830, 0x0034C160
.word 0x0034C160, 0x0034DA90
.word 0x0034DA90, 0x0034F3C0
.word 0x0034F3C0, 0x00350CF0
.word 0x00350CF0, 0x00350D38
.word 0x00350D38, 0x00350D80
.word 0x00350D80, 0x00350D80
.word 0x00350D80, 0x003526B0
.word 0x003526B0, 0x003526B0
.word 0x003526B0, 0x00353FE0
.word 0x00353FE0, 0x00354028
.word 0x00354028, 0x00354070
.word 0x00354070, 0x00354070
.word 0x00354070, 0x003559A0
.word 0x003559A0, 0x003559A0
.word 0x003559A0, 0x003572D0
.word 0x003572D0, 0x00357318
.word 0x00357318, 0x00357360
.word 0x00357360, 0x00357360
.word 0x00357360, 0x00358C90
.word 0x00358C90, 0x00358C90
.word 0x00358C90, 0x0035A5C0
.word 0x0035A5C0, 0x0035A608
.word 0x0035A608, 0x0035A650
.word 0x0035A650, 0x0035BF80
.word 0x0035BF80, 0x0035D8B0
.word 0x0035D8B0, 0x0035F1E0
.word 0x0035F1E0, 0x00360B10
.word 0x00360B10, 0x00360B58
.word 0x00360B58, 0x00360BA0
.word 0x00360BA0, 0x003624D0
.word 0x003624D0, 0x00363E00
.word 0x00363E00, 0x00365730
.word 0x00365730, 0x00367060
.word 0x00367060, 0x003670A8
.word 0x003670A8, 0x003670F0
.word 0x003670F0, 0x00368A20
.word 0x00368A20, 0x0036A350
.word 0x0036A350, 0x0036BC80
.word 0x0036BC80, 0x0036D5B0
.word 0x0036D5B0, 0x0036D5F8
.word 0x0036D5F8, 0x0036D640
.word 0x0036D640, 0x0036D640
.word 0x0036D640, 0x0036EF70
.word 0x0036EF70, 0x0036EF70
.word 0x0036EF70, 0x003708A0
.word 0x003708A0, 0x003708E8
.word 0x003708E8, 0x00370930
.word 0x00370930, 0x00370930
.word 0x00370930, 0x00372260
.word 0x00372260, 0x00372260
.word 0x00372260, 0x00373B90
.word 0x00373B90, 0x00373BD8
.word 0x00373BD8, 0x00373C20
.word 0x00373C20, 0x00375550
.word 0x00375550, 0x00376E80
.word 0x00376E80, 0x003787B0
.word 0x003787B0, 0x0037A0E0
.word 0x0037A0E0, 0x0037A128
.word 0x0037A128, 0x0037A170
.word 0x0037A170, 0x0037BAA0
.word 0x0037BAA0, 0x0037D3D0
.word 0x0037D3D0, 0x0037ED00
.word 0x0037ED00, 0x00380630
.word 0x00380630, 0x00380678
.word 0x00380678, 0x003806C0
.word 0x003806C0, 0x00381FF0
.word 0x00381FF0, 0x00383920
.word 0x00383920, 0x00385250
.word 0x00385250, 0x00386B80
.word 0x00386B80, 0x00386BC8
.word 0x00386BC8, 0x00386C10
.word 0x00386C10, 0x00388540
.word 0x00388540, 0x00389E70
.word 0x00389E70, 0x0038B7A0
.word 0x0038B7A0, 0x0038D0D0
.word 0x0038D0D0, 0x0038D118
.word 0x0038D118, 0x0038D160
.word 0x0038D160, 0x0038EA90
.word 0x0038EA90, 0x003903C0
.word 0x003903C0, 0x00391CF0
.word 0x00391CF0, 0x00393620
.word 0x00393620, 0x00393668
.word 0x00393668, 0x003936B0
.word 0x003936B0, 0x00394FE0
.word 0x00394FE0, 0x00396910
.word 0x00396910, 0x00398240
.word 0x00398240, 0x00399B70
.word 0x00399B70, 0x00399BB8
.word 0x00399BB8, 0x00399C00
.word 0x00399C00, 0x0039B530
.word 0x0039B530, 0x0039CE60
.word 0x0039CE60, 0x0039E790
.word 0x0039E790, 0x003A00C0
.word 0x003A00C0, 0x003A0108
.word 0x003A0108, 0x003A0150
.word 0x003A0150, 0x003A1A80
.word 0x003A1A80, 0x003A33B0
.word 0x003A33B0, 0x003A4CE0
.word 0x003A4CE0, 0x003A6610
.word 0x003A6610, 0x003A6658
.word 0x003A6658, 0x003A66A0
.word 0x003A66A0, 0x003A7FD0
.word 0x003A7FD0, 0x003A9900
.word 0x003A9900, 0x003AB230
.word 0x003AB230, 0x003ACB60
.word 0x003ACB60, 0x003ACBA8
.word 0x003ACBA8, 0x003ACBF0
.word 0x003ACBF0, 0x003AE520
.word 0x003AE520, 0x003AFE50
.word 0x003AFE50, 0x003B1780
.word 0x003B1780, 0x003B30B0
.word 0x003B30B0, 0x003B30F8
.word 0x003B30F8, 0x003B3140
.word 0x003B3140, 0x003B4A70
.word 0x003B4A70, 0x003B63A0
.word 0x003B63A0, 0x003B7CD0
.word 0x003B7CD0, 0x003B9600
.word 0x003B9600, 0x003B9648
.word 0x003B9648, 0x003B9690
.word 0x003B9690, 0x003BAFC0
.word 0x003BAFC0, 0x003BC8F0
.word 0x003BC8F0, 0x003BE220
.word 0x003BE220, 0x003BFB50
.word 0x003BFB50, 0x003BFB98
.word 0x003BFB98, 0x003BFBE0
.word 0x003BFBE0, 0x003C1510
.word 0x003C1510, 0x003C2E40
.word 0x003C2E40, 0x003C4770
.word 0x003C4770, 0x003C60A0
.word 0x003C60A0, 0x003C60E8
.word 0x003C60E8, 0x003C6130
.word 0x003C6130, 0x003C7A60
.word 0x003C7A60, 0x003C9390
.word 0x003C9390, 0x003CACC0
.word 0x003CACC0, 0x003CC5F0
.word 0x003CC5F0, 0x003CC638
.word 0x003CC638, 0x003CC680
.word 0x003CC680, 0x003CDFB0
.word 0x003CDFB0, 0x003CF8E0
.word 0x003CF8E0, 0x003D1210
.word 0x003D1210, 0x003D2B40
.word 0x003D2B40, 0x003D2B88
.word 0x003D2B88, 0x003D2BD0
.word 0x003D2BD0, 0x003D4500
.word 0x003D4500, 0x003D5E30
.word 0x003D5E30, 0x003D7760
.word 0x003D7760, 0x003D9090
.word 0x003D9090, 0x003D90D8
.word 0x003D90D8, 0x003D9120
.word 0x003D9120, 0x003DAA50
.word 0x003DAA50, 0x003DC380
.word 0x003DC380, 0x003DDCB0
.word 0x003DDCB0, 0x003DF5E0
.word 0x003DF5E0, 0x003DF628
.word 0x003DF628, 0x003DF670
.word 0x003DF670, 0x003E0FA0
.word 0x003E0FA0, 0x003E28D0
.word 0x003E28D0, 0x003E4200
.word 0x003E4200, 0x003E5B30
.word 0x003E5B30, 0x003E5B78
.word 0x003E5B78, 0x003E5BC0
.word 0x003E5BC0, 0x003E74F0
.word 0x003E74F0, 0x003E8E20
.word 0x003E8E20, 0x003EA750
.word 0x003EA750, 0x003EC080
.word 0x003EC080, 0x003EC0C8
.word 0x003EC0C8, 0x003EC110
.word 0x003EC110, 0x003EDA40
.word 0x003EDA40, 0x003EF370
.word 0x003EF370, 0x003F0CA0
.word 0x003F0CA0, 0x003F25D0
.word 0x003F25D0, 0x003F2618
.word 0x003F2618, 0x003F2660
.word 0x003F2660, 0x003F3F90
.word 0x003F3F90, 0x003F58C0
.word 0x003F58C0, 0x003F71F0
.word 0x003F71F0, 0x003F8B20
.word 0x003F8B20, 0x003F8B68
.word 0x003F8B68, 0x003F8BB0
.word 0x003F8BB0, 0x003FA4E0
.word 0x003FA4E0, 0x003FBE10
.word 0x003FBE10, 0x003FD740
.word 0x003FD740, 0x003FF070
.word 0x003FF070, 0x003FF0B8
.word 0x003FF0B8, 0x003FF100
.word 0x003FF100, 0x00400A30
.word 0x00400A30, 0x00402360
.word 0x00402360, 0x00403C90
.word 0x00403C90, 0x004055C0
.word 0x004055C0, 0x00405608
.word 0x00405608, 0x00405650
.word 0x00405650, 0x00406F80
.word 0x00406F80, 0x004088B0
.word 0x004088B0, 0x0040A1E0
.word 0x0040A1E0, 0x0040BB10
.word 0x0040BB10, 0x0040BB58
.word 0x0040BB58, 0x0040BBA0
.word 0x0040BBA0, 0x0040D4D0
.word 0x0040D4D0, 0x0040EE00
.word 0x0040EE00, 0x00410730
.word 0x00410730, 0x00412060
.word 0x00412060, 0x004120A8
.word 0x004120A8, 0x004120F0
.word 0x004120F0, 0x00413A20
.word 0x00413A20, 0x00415350
.word 0x00415350, 0x00416C80
.word 0x00416C80, 0x004185B0
.word 0x004185B0, 0x004185F8
.word 0x004185F8, 0x00418640
.word 0x00418640, 0x00419F70
.word 0x00419F70, 0x0041B8A0
.word 0x0041B8A0, 0x0041D1D0
.word 0x0041D1D0, 0x0041EB00
.word 0x0041EB00, 0x0041EB48
.word 0x0041EB48, 0x0041EB90
.word 0x0041EB90, 0x004204C0
.word 0x004204C0, 0x00421DF0
.word 0x00421DF0, 0x00423720
.word 0x00423720, 0x00425050
.word 0x00425050, 0x00425098
.word 0x00425098, 0x004250E0
.word 0x004250E0, 0x00426A10
.word 0x00426A10, 0x00428340
.word 0x00428340, 0x00429C70
.word 0x00429C70, 0x0042B5A0
.word 0x0042B5A0, 0x0042B5E8
.word 0x0042B5E8, 0x0042B630
.word 0x0042B630, 0x0042CF60
.word 0x0042CF60, 0x0042E890
.word 0x0042E890, 0x004301C0
.word 0x004301C0, 0x00431AF0
.word 0x00431AF0, 0x00431B38
.word 0x00431B38, 0x00431B80
.word 0x00431B80, 0x004334B0
.word 0x004334B0, 0x00434DE0
.word 0x00434DE0, 0x00436710
.word 0x00436710, 0x00438040
.word 0x00438040, 0x00438088
.word 0x00438088, 0x004380D0
.word 0x004380D0, 0x00439A00
.word 0x00439A00, 0x0043B330
.word 0x0043B330, 0x0043CC60
.word 0x0043CC60, 0x0043E590
.word 0x0043E590, 0x0043E5D8
.word 0x0043E5D8, 0x0043E620
.word 0x0043E620, 0x0043FF50
.word 0x0043FF50, 0x00441880
.word 0x00441880, 0x004431B0
.word 0x004431B0, 0x00444AE0
.word 0x00444AE0, 0x00444B28
.word 0x00444B28, 0x00444B70
.word 0x00444B70, 0x004464A0
.word 0x004464A0, 0x00447DD0
.word 0x00447DD0, 0x00449700
.word 0x00449700, 0x0044B030
.word 0x0044B030, 0x0044B078
.word 0x0044B078, 0x0044B0C0
.word 0x0044B0C0, 0x0044C9F0
.word 0x0044C9F0, 0x0044E320
.word 0x0044E320, 0x0044FC50
.word 0x0044FC50, 0x00451580
.word 0x00451580, 0x004515C8
.word 0x004515C8, 0x00451610
.word 0x00451610, 0x00452F40
.word 0x00452F40, 0x00454870
.word 0x00454870, 0x004561A0
.word 0x004561A0, 0x00457AD0
.word 0x00457AD0, 0x00457B18
.word 0x00457B18, 0x00457B60
.word 0x00457B60, 0x00459490
.word 0x00459490, 0x0045ADC0
.word 0x0045ADC0, 0x0045C6F0
.word 0x0045C6F0, 0x0045E020
.word 0x0045E020, 0x0045E068
.word 0x0045E068, 0x0045E0B0
.word 0x0045E0B0, 0x0045F9E0
.word 0x0045F9E0, 0x00461310
.word 0x00461310, 0x00462C40
.word 0x00462C40, 0x00464570
.word 0x00464570, 0x004645B8
.word 0x004645B8, 0x00464600
.word 0x00464600, 0x00465F30
.word 0x00465F30, 0x00467860
.word 0x00467860, 0x00469190
.word 0x00469190, 0x0046AAC0
.word 0x0046AAC0, 0x0046AB08
.word 0x0046AB08, 0x0046AB50
.word 0x0046AB50, 0x0046C480
.word 0x0046C480, 0x0046DDB0
.word 0x0046DDB0, 0x0046F6E0
.word 0x0046F6E0, 0x00471010
.word 0x00471010, 0x00471058
.word 0x00471058, 0x004710A0
.word 0x004710A0, 0x004729D0
.word 0x004729D0, 0x00474300
.word 0x00474300, 0x00475C30
.word 0x00475C30, 0x00477560
.word 0x00477560, 0x004775A8
.word 0x004775A8, 0x004775F0
.word 0x004775F0, 0x00478F20
.word 0x00478F20, 0x0047A850
.word 0x0047A850, 0x0047C180
.word 0x0047C180, 0x0047DAB0
.word 0x0047DAB0, 0x0047DAF8
.word 0x0047DAF8, 0x0047DB40
.word 0x0047DB40, 0x0047F470
.word 0x0047F470, 0x00480DA0
.word 0x00480DA0, 0x004826D0
.word 0x004826D0, 0x00484000
.word 0x00484000, 0x00484048
.word 0x00484048, 0x00484090
.word 0x00484090, 0x004859C0
.word 0x004859C0, 0x004872F0
.word 0x004872F0, 0x00488C20
.word 0x00488C20, 0x0048A550
.word 0x0048A550, 0x0048A598
.word 0x0048A598, 0x0048A5E0
.word 0x0048A5E0, 0x0048BF10
.word 0x0048BF10, 0x0048D840
.word 0x0048D840, 0x0048F170
.word 0x0048F170, 0x00490AA0
.word 0x00490AA0, 0x00490AE8
.word 0x00490AE8, 0x00490B30
.word 0x00490B30, 0x00492460
.word 0x00492460, 0x00493D90
.word 0x00493D90, 0x004956C0
.word 0x004956C0, 0x00496FF0
.word 0x00496FF0, 0x00497038
.word 0x00497038, 0x00497080
.word 0x00497080, 0x004989B0
.word 0x004989B0, 0x0049A2E0
.word 0x0049A2E0, 0x0049BC10
.word 0x0049BC10, 0x0049D540
.word 0x0049D540, 0x0049D588
.word 0x0049D588, 0x0049D5D0
.word 0x0049D5D0, 0x0049EF00
.word 0x0049EF00, 0x004A0830
.word 0x004A0830, 0x004A2160
.word 0x004A2160, 0x004A3A90
.word 0x004A3A90, 0x004A3AD8
.word 0x004A3AD8, 0x004A3B20
.word 0x004A3B20, 0x004A5450
.word 0x004A5450, 0x004A6D80
.word 0x004A6D80, 0x004A86B0
.word 0x004A86B0, 0x004A9FE0
.word 0x004A9FE0, 0x004AA028
.word 0x004AA028, 0x004AA070
.word 0x004AA070, 0x004AA070
.word 0x004AA070, 0x004AB9A0
.word 0x004AB9A0, 0x004AB9A0
.word 0x004AB9A0, 0x004AD2D0
.word 0x004AD2D0, 0x004AD318
.word 0x004AD318, 0x004AD360
.word 0x004AD360, 0x004AEC90
.word 0x004AEC90, 0x004B05C0
.word 0x004B05C0, 0x004B1EF0
.word 0x004B1EF0, 0x004B3820
.word 0x004B3820, 0x004B3868
.word 0x004B3868, 0x004B38B0
.word 0x004B38B0, 0x004B51E0
.word 0x004B51E0, 0x004B6B10
.word 0x004B6B10, 0x004B8440
.word 0x004B8440, 0x004B9D70
.word 0x004B9D70, 0x004B9DB8
.word 0x004B9DB8, 0x004B9E00
.word 0x004B9E00, 0x004BB730
.word 0x004BB730, 0x004BD060
.word 0x004BD060, 0x004BE990
.word 0x004BE990, 0x004C02C0
.word 0x004C02C0, 0x004C0308
.word 0x004C0308, 0x004C0350
.word 0x004C0350, 0x004C1C80
.word 0x004C1C80, 0x004C35B0
.word 0x004C35B0, 0x004C4EE0
.word 0x004C4EE0, 0x004C6810
.word 0x004C6810, 0x004C6858
.word 0x004C6858, 0x004C68A0
.word 0x004C68A0, 0x004C81D0
.word 0x004C81D0, 0x004C9B00
.word 0x004C9B00, 0x004CB430
.word 0x004CB430, 0x004CCD60
.word 0x004CCD60, 0x004CCDA8
.word 0x004CCDA8, 0x004CCDF0
.word 0x004CCDF0, 0x004CE720
.word 0x004CE720, 0x004D0050
.word 0x004D0050, 0x004D1980
.word 0x004D1980, 0x004D32B0
.word 0x004D32B0, 0x004D32F8
.word 0x004D32F8, 0x004D3340
.word 0x004D3340, 0x004D4C70
.word 0x004D4C70, 0x004D65A0
.word 0x004D65A0, 0x004D7ED0
.word 0x004D7ED0, 0x004D9800
.word 0x004D9800, 0x004D9848
.word 0x004D9848, 0x004D9890
.word 0x004D9890, 0x004DB1C0
.word 0x004DB1C0, 0x004DCAF0
.word 0x004DCAF0, 0x004DE420
.word 0x004DE420, 0x004DFD50
.word 0x004DFD50, 0x004DFD98
.word 0x004DFD98, 0x004DFDE0
.word 0x004DFDE0, 0x004E1710
.word 0x004E1710, 0x004E3040
.word 0x004E3040, 0x004E4970
.word 0x004E4970, 0x004E62A0
.word 0x004E62A0, 0x004E62E8
.word 0x004E62E8, 0x004E6330
.word 0x004E6330, 0x004E7C60
.word 0x004E7C60, 0x004E9590
.word 0x004E9590, 0x004EAEC0
.word 0x004EAEC0, 0x004EC7F0
.word 0x004EC7F0, 0x004EC838
.word 0x004EC838, 0x004EC880
.word 0x004EC880, 0x004EE1B0
.word 0x004EE1B0, 0x004EFAE0
.word 0x004EFAE0, 0x004F1410
.word 0x004F1410, 0x004F2D40
.word 0x004F2D40, 0x004F2D88
.word 0x004F2D88, 0x004F2DD0
.word 0x004F2DD0, 0x004F4700
.word 0x004F4700, 0x004F6030
.word 0x004F6030, 0x004F7960
.word 0x004F7960, 0x004F9290
.word 0x004F9290, 0x004F92D8
.word 0x004F92D8, 0x004F9320
.word 0x004F9320, 0x004FAC50
.word 0x004FAC50, 0x004FC580
.word 0x004FC580, 0x004FDEB0
.word 0x004FDEB0, 0x004FF7E0
.word 0x004FF7E0, 0x004FF828
.word 0x004FF828, 0x004FF870
.word 0x004FF870, 0x005011A0
.word 0x005011A0, 0x00502AD0
.word 0x00502AD0, 0x00504400
.word 0x00504400, 0x00505D30
.word 0x00505D30, 0x00505D78
.word 0x00505D78, 0x00505DC0
.word 0x00505DC0, 0x005076F0
.word 0x005076F0, 0x00509020
.word 0x00509020, 0x0050A950
.word 0x0050A950, 0x0050C280
.word 0x0050C280, 0x0050C2C8
.word 0x0050C2C8, 0x0050C310
.word 0x0050C310, 0x0050DC40
.word 0x0050DC40, 0x0050F570
.word 0x0050F570, 0x00510EA0
.word 0x00510EA0, 0x005127D0
.word 0x005127D0, 0x00512818
.word 0x00512818, 0x00512860
.word 0x00512860, 0x00514190
.word 0x00514190, 0x00515AC0
.word 0x00515AC0, 0x005173F0
.word 0x005173F0, 0x00518D20
.word 0x00518D20, 0x00518D68
.word 0x00518D68, 0x00518DB0
.word 0x00518DB0, 0x0051A6E0
.word 0x0051A6E0, 0x0051C010
.word 0x0051C010, 0x0051D940
.word 0x0051D940, 0x0051F270
.word 0x0051F270, 0x0051F2B8
.word 0x0051F2B8, 0x0051F300
.word 0x0051F300, 0x00520C30
.word 0x00520C30, 0x00522560
.word 0x00522560, 0x00523E90
.word 0x00523E90, 0x005257C0
.word 0x005257C0, 0x00525808
.word 0x00525808, 0x00525850
.word 0x00525850, 0x00527180
.word 0x00527180, 0x00528AB0
.word 0x00528AB0, 0x0052A3E0
.word 0x0052A3E0, 0x0052BD10
.word 0x0052BD10, 0x0052BD58
.word 0x0052BD58, 0x0052BDA0
.word 0x0052BDA0, 0x0052D6D0
.word 0x0052D6D0, 0x0052F000
.word 0x0052F000, 0x00530930
.word 0x00530930, 0x00532260
.word 0x00532260, 0x005322A8
.word 0x005322A8, 0x005322F0
.word 0x005322F0, 0x00533C20
.word 0x00533C20, 0x00535550
.word 0x00535550, 0x00536E80
.word 0x00536E80, 0x005387B0
.word 0x005387B0, 0x005387F8
.word 0x005387F8, 0x00538840
.word 0x00538840, 0x0053A170
.word 0x0053A170, 0x0053BAA0
.word 0x0053BAA0, 0x0053D3D0
.word 0x0053D3D0, 0x0053ED00
.word 0x0053ED00, 0x0053ED48
.word 0x0053ED48, 0x0053ED90
.word 0x0053ED90, 0x005406C0
.word 0x005406C0, 0x00541FF0
.word 0x00541FF0, 0x00543920
.word 0x00543920, 0x00545250
.word 0x00545250, 0x00545298
.word 0x00545298, 0x005452E0
.word 0x005452E0, 0x00546C10
.word 0x00546C10, 0x00548540
.word 0x00548540, 0x00549E70
.word 0x00549E70, 0x0054B7A0
.word 0x0054B7A0, 0x0054B7E8
.word 0x0054B7E8, 0x0054B830
.word 0x0054B830, 0x0054D160
.word 0x0054D160, 0x0054EA90
.word 0x0054EA90, 0x005503C0
.word 0x005503C0, 0x00551CF0
.word 0x00551CF0, 0x00551D38
.word 0x00551D38, 0x00551D80
.word 0x00551D80, 0x005536B0
.word 0x005536B0, 0x00554FE0
.word 0x00554FE0, 0x00556910
.word 0x00556910, 0x00558240
.word 0x00558240, 0x00558288
.word 0x00558288, 0x005582D0
.word 0x005582D0, 0x00559C00
.word 0x00559C00, 0x0055B530
.word 0x0055B530, 0x0055CE60
.word 0x0055CE60, 0x0055E790
.word 0x0055E790, 0x0055E7D8
.word 0x0055E7D8, 0x0055E820
.word 0x0055E820, 0x00560150
.word 0x00560150, 0x00561A80
.word 0x00561A80, 0x005633B0
.word 0x005633B0, 0x00564CE0
.word 0x00564CE0, 0x00564D28
.word 0x00564D28, 0x00564D70
.word 0x00564D70, 0x005666A0
.word 0x005666A0, 0x00567FD0
.word 0x00567FD0, 0x00569900
.word 0x00569900, 0x0056B230
.word 0x0056B230, 0x0056B278
.word 0x0056B278, 0x0056B2C0
.word 0x0056B2C0, 0x0056CBF0
.word 0x0056CBF0, 0x0056E520
.word 0x0056E520, 0x0056FE50
.word 0x0056FE50, 0x00571780
.word 0x00571780, 0x005717C8
.word 0x005717C8, 0x00571810
.word 0x00571810, 0x00571810
.word 0x00571810, 0x00573140
.word 0x00573140, 0x00573140
.word 0x00573140, 0x00574A70
.word 0x00574A70, 0x00574AB8
.word 0x00574AB8, 0x00574B00
.word 0x00574B00, 0x00576430
.word 0x00576430, 0x00577D60
.word 0x00577D60, 0x00579690
.word 0x00579690, 0x0057AFC0
.word 0x0057AFC0, 0x0057B008
.word 0x0057B008, 0x0057B050
.word 0x0057B050, 0x0057C980
.word 0x0057C980, 0x0057E2B0
.word 0x0057E2B0, 0x0057FBE0
.word 0x0057FBE0, 0x00581510
.word 0x00581510, 0x00581558
.word 0x00581558, 0x005815A0
.word 0x005815A0, 0x005815A0
.word 0x005815A0, 0x00582ED0
.word 0x00582ED0, 0x00582ED0
.word 0x00582ED0, 0x00584800
.word 0x00584800, 0x00584848
.word 0x00584848, 0x00584890
.word 0x00584890, 0x00584890
.word 0x00584890, 0x005861C0
.word 0x005861C0, 0x005861C0
.word 0x005861C0, 0x00587AF0
.word 0x00587AF0, 0x00587B38
.word 0x00587B38, 0x00587B80
.word 0x00587B80, 0x005894B0
.word 0x005894B0, 0x005894B0
.word 0x005894B0, 0x0058ADE0
.word 0x0058ADE0, 0x0058ADE0
.word 0x0058ADE0, 0x0058AE28
.word 0x0058AE28, 0x0058AE70
.word 0x0058AE70, 0x0058C7A0
.word 0x0058C7A0, 0x0058E0D0
.word 0x0058E0D0, 0x0058FA00
.word 0x0058FA00, 0x00591330
.word 0x00591330, 0x00591378
.word 0x00591378, 0x005913C0
.word 0x005913C0, 0x00592CF0
.word 0x00592CF0, 0x00594620
.word 0x00594620, 0x00595F50
.word 0x00595F50, 0x00597880
.word 0x00597880, 0x005978C8
.word 0x005978C8, 0x00597910
.word 0x00597910, 0x00599240
.word 0x00599240, 0x00599240
.word 0x00599240, 0x0059AB70
.word 0x0059AB70, 0x0059AB70
.word 0x0059AB70, 0x0059ABB8
.word 0x0059ABB8, 0x0059AC00
.word 0x0059AC00, 0x0059C530
.word 0x0059C530, 0x0059C530
.word 0x0059C530, 0x0059DE60
.word 0x0059DE60, 0x0059DE60
.word 0x0059DE60, 0x0059DEA8
.word 0x0059DEA8, 0x0059DEF0
.word 0x0059DEF0, 0x0059DEF0
.word 0x0059DEF0, 0x0059F820
.word 0x0059F820, 0x0059F820
.word 0x0059F820, 0x005A1150
.word 0x005A1150, 0x005A1198
.word 0x005A1198, 0x005A11E0
.word 0x005A11E0, 0x005A11E0
.word 0x005A11E0, 0x005A2B10
.word 0x005A2B10, 0x005A2B10
.word 0x005A2B10, 0x005A4440
.word 0x005A4440, 0x005A4488
.word 0x005A4488, 0x005A44D0
.word 0x005A44D0, 0x005A44D0
.word 0x005A44D0, 0x005A5E00
.word 0x005A5E00, 0x005A5E00
.word 0x005A5E00, 0x005A7730
.word 0x005A7730, 0x005A7778
.word 0x005A7778, 0x005A77C0
.word 0x005A77C0, 0x005A90F0
.word 0x005A90F0, 0x005AAA20
.word 0x005AAA20, 0x005AC350
.word 0x005AC350, 0x005ADC80
.word 0x005ADC80, 0x005ADCC8
.word 0x005ADCC8, 0x005ADD10
.word 0x005ADD10, 0x005AF640
.word 0x005AF640, 0x005B0F70
.word 0x005B0F70, 0x005B28A0
.word 0x005B28A0, 0x005B41D0
.word 0x005B41D0, 0x005B4218
.word 0x005B4218, 0x005B4260
.word 0x005B4260, 0x005B5B90
.word 0x005B5B90, 0x005B74C0
.word 0x005B74C0, 0x005B8DF0
.word 0x005B8DF0, 0x005BA720
.word 0x005BA720, 0x005BA768
.word 0x005BA768, 0x005BA7B0
.word 0x005BA7B0, 0x005BA7B0
.word 0x005BA7B0, 0x005BC0E0
.word 0x005BC0E0, 0x005BC0E0
.word 0x005BC0E0, 0x005BDA10
.word 0x005BDA10, 0x005BDA58
.word 0x005BDA58, 0x005BDAA0
.word 0x005BDAA0, 0x005BDAA0
.word 0x005BDAA0, 0x005BF3D0
.word 0x005BF3D0, 0x005BF3D0
.word 0x005BF3D0, 0x005C0D00
.word 0x005C0D00, 0x005C0D48
.word 0x005C0D48, 0x005C0D90
.word 0x005C0D90, 0x005C0D90
.word 0x005C0D90, 0x005C26C0
.word 0x005C26C0, 0x005C26C0
.word 0x005C26C0, 0x005C3FF0
.word 0x005C3FF0, 0x005C4038
.word 0x005C4038, 0x005C4080
.word 0x005C4080, 0x005C59B0
.word 0x005C59B0, 0x005C72E0
.word 0x005C72E0, 0x005C8C10
.word 0x005C8C10, 0x005CA540
.word 0x005CA540, 0x005CA588
.word 0x005CA588, 0x005CA5D0
.word 0x005CA5D0, 0x005CBF00
.word 0x005CBF00, 0x005CD830
.word 0x005CD830, 0x005CF160
.word 0x005CF160, 0x005D0A90
.word 0x005D0A90, 0x005D0AD8
.word 0x005D0AD8, 0x005D0B20
.word 0x005D0B20, 0x005D2450
.word 0x005D2450, 0x005D3D80
.word 0x005D3D80, 0x005D56B0
.word 0x005D56B0, 0x005D6FE0
.word 0x005D6FE0, 0x005D7028
.word 0x005D7028, 0x005D7070
.word 0x005D7070, 0x005D89A0
.word 0x005D89A0, 0x005DA2D0
.word 0x005DA2D0, 0x005DBC00
.word 0x005DBC00, 0x005DD530
.word 0x005DD530, 0x005DD578
.word 0x005DD578, 0x005DD5C0
.word 0x005DD5C0, 0x005DEEF0
.word 0x005DEEF0, 0x005E0820
.word 0x005E0820, 0x005E2150
.word 0x005E2150, 0x005E3A80
.word 0x005E3A80, 0x005E3AC8
.word 0x005E3AC8, 0x005E3B10
.word 0x005E3B10, 0x005E5440
.word 0x005E5440, 0x005E6D70
.word 0x005E6D70, 0x005E86A0
.word 0x005E86A0, 0x005E9FD0
.word 0x005E9FD0, 0x005EA018
.word 0x005EA018, 0x005EA060
.word 0x005EA060, 0x005EB990
.word 0x005EB990, 0x005ED2C0
.word 0x005ED2C0, 0x005EEBF0
.word 0x005EEBF0, 0x005F0520
.word 0x005F0520, 0x005F0568
.word 0x005F0568, 0x005F05B0
.word 0x005F05B0, 0x005F1EE0
.word 0x005F1EE0, 0x005F3810
.word 0x005F3810, 0x005F5140
.word 0x005F5140, 0x005F6A70
.word 0x005F6A70, 0x005F6AB8
.word 0x005F6AB8, 0x005F6B00
.word 0x005F6B00, 0x005F8430
.word 0x005F8430, 0x005F9D60
.word 0x005F9D60, 0x005FB690
.word 0x005FB690, 0x005FCFC0
.word 0x005FCFC0, 0x005FD008
.word 0x005FD008, 0x005FD050
.word 0x005FD050, 0x005FE980
.word 0x005FE980, 0x006002B0
.word 0x006002B0, 0x00601BE0
.word 0x00601BE0, 0x00603510
.word 0x00603510, 0x00603558
.word 0x00603558, 0x006035A0
.word 0x006035A0, 0x00604ED0
.word 0x00604ED0, 0x00606800
.word 0x00606800, 0x00608130
.word 0x00608130, 0x00609A60
.word 0x00609A60, 0x00609AA8
.word 0x00609AA8, 0x00609AF0
.word 0x00609AF0, 0x0060B420
.word 0x0060B420, 0x0060CD50
.word 0x0060CD50, 0x0060E680
.word 0x0060E680, 0x0060FFB0
.word 0x0060FFB0, 0x0060FFF8
.word 0x0060FFF8, 0x00610040
.word 0x00610040, 0x00611970
.word 0x00611970, 0x006132A0
.word 0x006132A0, 0x00614BD0
.word 0x00614BD0, 0x00616500
.word 0x00616500, 0x00616548
.word 0x00616548, 0x00616590
.word 0x00616590, 0x00617EC0
.word 0x00617EC0, 0x006197F0
.word 0x006197F0, 0x0061B120
.word 0x0061B120, 0x0061CA50
.word 0x0061CA50, 0x0061CA98
.word 0x0061CA98, 0x0061CAE0
.word 0x0061CAE0, 0x0061E410
.word 0x0061E410, 0x0061FD40
.word 0x0061FD40, 0x00621670
.word 0x00621670, 0x00622FA0
.word 0x00622FA0, 0x00622FE8
.word 0x00622FE8, 0x00623030
.word 0x00623030, 0x00624960
.word 0x00624960, 0x00626290
.word 0x00626290, 0x00627BC0
.word 0x00627BC0, 0x006294F0
.word 0x006294F0, 0x00629538
.word 0x00629538, 0x00629580
.word 0x00629580, 0x0062AEB0
.word 0x0062AEB0, 0x0062C7E0
.word 0x0062C7E0, 0x0062E110
.word 0x0062E110, 0x0062FA40
.word 0x0062FA40, 0x0062FA88
.word 0x0062FA88, 0x0062FAD0
.word 0x0062FAD0, 0x00631400
.word 0x00631400, 0x00632D30
.word 0x00632D30, 0x00634660
.word 0x00634660, 0x00635F90
.word 0x00635F90, 0x00635FD8
.word 0x00635FD8, 0x00636020
.word 0x00636020, 0x00637950
.word 0x00637950, 0x00639280
.word 0x00639280, 0x0063ABB0
.word 0x0063ABB0, 0x0063C4E0
.word 0x0063C4E0, 0x0063C528
.word 0x0063C528, 0x0063C570
.word 0x0063C570, 0x0063DEA0
.word 0x0063DEA0, 0x0063F7D0
.word 0x0063F7D0, 0x00641100
.word 0x00641100, 0x00642A30
.word 0x00642A30, 0x00642A78
.word 0x00642A78, 0x00642AC0
.word 0x00642AC0, 0x006443F0
.word 0x006443F0, 0x00645D20
.word 0x00645D20, 0x00647650
.word 0x00647650, 0x00648F80
.word 0x00648F80, 0x00648FC8
.word 0x00648FC8, 0x00649010
.word 0x00649010, 0x0064A940
.word 0x0064A940, 0x0064C270
.word 0x0064C270, 0x0064DBA0
.word 0x0064DBA0, 0x0064F4D0
.word 0x0064F4D0, 0x0064F518
.word 0x0064F518, 0x0064F560
.word 0x0064F560, 0x00650E90
.word 0x00650E90, 0x006527C0
.word 0x006527C0, 0x006540F0
.word 0x006540F0, 0x00655A20
.word 0x00655A20, 0x00655A68
.word 0x00655A68, 0x00655AB0
.word 0x00655AB0, 0x006573E0
.word 0x006573E0, 0x00658D10
.word 0x00658D10, 0x0065A640
.word 0x0065A640, 0x0065BF70
.word 0x0065BF70, 0x0065BFB8
.word 0x0065BFB8, 0x0065C000
.word 0x0065C000, 0x0065D930
.word 0x0065D930, 0x0065F260
.word 0x0065F260, 0x00660B90
.word 0x00660B90, 0x006624C0
.word 0x006624C0, 0x00662508
.word 0x00662508, 0x00662550
.word 0x00662550, 0x00663E80
.word 0x00663E80, 0x006657B0
.word 0x006657B0, 0x006670E0
.word 0x006670E0, 0x00668A10
.word 0x00668A10, 0x00668A58
.word 0x00668A58, 0x00668AA0
.word 0x00668AA0, 0x0066A3D0
.word 0x0066A3D0, 0x0066BD00
.word 0x0066BD00, 0x0066D630
.word 0x0066D630, 0x0066EF60
.word 0x0066EF60, 0x0066EFA8
.word 0x0066EFA8, 0x0066EFF0
.word 0x0066EFF0, 0x00670920
.word 0x00670920, 0x00672250
.word 0x00672250, 0x00673B80
.word 0x00673B80, 0x006754B0
.word 0x006754B0, 0x006754F8
.word 0x006754F8, 0x00675540
.word 0x00675540, 0x00676E70
.word 0x00676E70, 0x006787A0
.word 0x006787A0, 0x0067A0D0
.word 0x0067A0D0, 0x0067BA00
.word 0x0067BA00, 0x0067BA48
.word 0x0067BA48, 0x0067BA90
.word 0x0067BA90, 0x0067D3C0
.word 0x0067D3C0, 0x0067ECF0
.word 0x0067ECF0, 0x00680620
.word 0x00680620, 0x00681F50
.word 0x00681F50, 0x00681F98
.word 0x00681F98, 0x00681FE0
.word 0x00681FE0, 0x00683910
.word 0x00683910, 0x00685240
.word 0x00685240, 0x00686B70
.word 0x00686B70, 0x006884A0
.word 0x006884A0, 0x006884E8
.word 0x006884E8, 0x00688530
.word 0x00688530, 0x00689E60
.word 0x00689E60, 0x0068B790
.word 0x0068B790, 0x0068D0C0
.word 0x0068D0C0, 0x0068E9F0
.word 0x0068E9F0, 0x0068EA38
.word 0x0068EA38, 0x0068EA80
.word 0x0068EA80, 0x006903B0
.word 0x006903B0, 0x00691CE0
.word 0x00691CE0, 0x00693610
.word 0x00693610, 0x00694F40
.word 0x00694F40, 0x00694F88
.word 0x00694F88, 0x00694FD0
.word 0x00694FD0, 0x00696900
.word 0x00696900, 0x00698230
.word 0x00698230, 0x00699B60
.word 0x00699B60, 0x0069B490
.word 0x0069B490, 0x0069B4D8
.word 0x0069B4D8, 0x0069B520
.word 0x0069B520, 0x0069CE50
.word 0x0069CE50, 0x0069E780
.word 0x0069E780, 0x006A00B0
.word 0x006A00B0, 0x006A19E0
.word 0x006A19E0, 0x006A1A28
.word 0x006A1A28, 0x006A1A70
.word 0x006A1A70, 0x006A33A0
.word 0x006A33A0, 0x006A4CD0
.word 0x006A4CD0, 0x006A6600
.word 0x006A6600, 0x006A7F30
.word 0x006A7F30, 0x006A7F78
.word 0x006A7F78, 0x006A7FC0
.word 0x006A7FC0, 0x006A98F0
.word 0x006A98F0, 0x006AB220
.word 0x006AB220, 0x006ACB50
.word 0x006ACB50, 0x006AE480
.word 0x006AE480, 0x006AE4C8
.word 0x006AE4C8, 0x006AE510
.word 0x006AE510, 0x006AFE40
.word 0x006AFE40, 0x006B1770
.word 0x006B1770, 0x006B30A0
.word 0x006B30A0, 0x006B49D0
.word 0x006B49D0, 0x006B4A18
.word 0x006B4A18, 0x006B4A60
.word 0x006B4A60, 0x006B6390
.word 0x006B6390, 0x006B7CC0
.word 0x006B7CC0, 0x006B95F0
.word 0x006B95F0, 0x006BAF20
.word 0x006BAF20, 0x006BAF68
.word 0x006BAF68, 0x006BAFB0
.word 0x006BAFB0, 0x006BC8E0
.word 0x006BC8E0, 0x006BE210
.word 0x006BE210, 0x006BFB40
.word 0x006BFB40, 0x006C1470
.word 0x006C1470, 0x006C14B8
.word 0x006C14B8, 0x006C1500
.word 0x006C1500, 0x006C1500
.word 0x006C1500, 0x006C2E30
.word 0x006C2E30, 0x006C2E30
.word 0x006C2E30, 0x006C4760
.word 0x006C4760, 0x006C47A8
.word 0x006C47A8, 0x006C47F0
.word 0x006C47F0, 0x006C6120
.word 0x006C6120, 0x006C7A50
.word 0x006C7A50, 0x006C9380
.word 0x006C9380, 0x006CACB0
.word 0x006CACB0, 0x006CACF8
.word 0x006CACF8, 0x006CAD40
.word 0x006CAD40, 0x006CC670
.word 0x006CC670, 0x006CDFA0
.word 0x006CDFA0, 0x006CF8D0
.word 0x006CF8D0, 0x006D1200
.word 0x006D1200, 0x006D1248
.word 0x006D1248, 0x006D1290
.word 0x006D1290, 0x006D2BC0
.word 0x006D2BC0, 0x006D44F0
.word 0x006D44F0, 0x006D5E20
.word 0x006D5E20, 0x006D7750
.word 0x006D7750, 0x006D7798
.word 0x006D7798, 0x006D77E0
.word 0x006D77E0, 0x006D9110
.word 0x006D9110, 0x006DAA40
.word 0x006DAA40, 0x006DC370
.word 0x006DC370, 0x006DDCA0
.word 0x006DDCA0, 0x006DDCE8
.word 0x006DDCE8, 0x006DDD30
.word 0x006DDD30, 0x006DF660
.word 0x006DF660, 0x006E0F90
.word 0x006E0F90, 0x006E28C0
.word 0x006E28C0, 0x006E41F0
.word 0x006E41F0, 0x006E4238
.word 0x006E4238, 0x006E4280
.word 0x006E4280, 0x006E5BB0
.word 0x006E5BB0, 0x006E74E0
.word 0x006E74E0, 0x006E8E10
.word 0x006E8E10, 0x006EA740
.word 0x006EA740, 0x006EA788
.word 0x006EA788, 0x006EA7D0
.word 0x006EA7D0, 0x006EC100
.word 0x006EC100, 0x006EDA30
.word 0x006EDA30, 0x006EF360
.word 0x006EF360, 0x006F0C90
.word 0x006F0C90, 0x006F0CD8
.word 0x006F0CD8, 0x006F0D20
.word 0x006F0D20, 0x006F2650
.word 0x006F2650, 0x006F3F80
.word 0x006F3F80, 0x006F58B0
.word 0x006F58B0, 0x006F71E0
.word 0x006F71E0, 0x006F7228
.word 0x006F7228, 0x006F7270
.word 0x006F7270, 0x006F8BA0
.word 0x006F8BA0, 0x006FA4D0
.word 0x006FA4D0, 0x006FBE00
.word 0x006FBE00, 0x006FD730
.word 0x006FD730, 0x006FD778
.word 0x006FD778, 0x006FD7C0
.word 0x006FD7C0, 0x006FF0F0
.word 0x006FF0F0, 0x00700A20
.word 0x00700A20, 0x00702350
.word 0x00702350, 0x00703C80
.word 0x00703C80, 0x00703CC8
.word 0x00703CC8, 0x00703D10
.word 0x00703D10, 0x00705640
.word 0x00705640, 0x00706F70
.word 0x00706F70, 0x007088A0
.word 0x007088A0, 0x0070A1D0
.word 0x0070A1D0, 0x0070A218
.word 0x0070A218, 0x0070A260
.word 0x0070A260, 0x0070BB90
.word 0x0070BB90, 0x0070D4C0
.word 0x0070D4C0, 0x0070EDF0
.word 0x0070EDF0, 0x00710720
.word 0x00710720, 0x00710768
.word 0x00710768, 0x007107B0
.word 0x007107B0, 0x007120E0
.word 0x007120E0, 0x00713A10
.word 0x00713A10, 0x00715340
.word 0x00715340, 0x00716C70
.word 0x00716C70, 0x00716CB8
.word 0x00716CB8, 0x00716D00
.word 0x00716D00, 0x00718630
.word 0x00718630, 0x00719F60
.word 0x00719F60, 0x0071B890
.word 0x0071B890, 0x0071D1C0
.word 0x0071D1C0, 0x0071D208
.word 0x0071D208, 0x0071D250
.word 0x0071D250, 0x0071EB80
.word 0x0071EB80, 0x007204B0
.word 0x007204B0, 0x00721DE0
.word 0x00721DE0, 0x00723710
.word 0x00723710, 0x00723758
.word 0x00723758, 0x007237A0
.word 0x007237A0, 0x007250D0
.word 0x007250D0, 0x00726A00
.word 0x00726A00, 0x00728330
.word 0x00728330, 0x00729C60
.word 0x00729C60, 0x00729CA8
.word 0x00729CA8, 0x00729CF0
.word 0x00729CF0, 0x0072B620
.word 0x0072B620, 0x0072CF50
.word 0x0072CF50, 0x0072E880
.word 0x0072E880, 0x007301B0
.word 0x007301B0, 0x007301F8
.word 0x007301F8, 0x00730240
.word 0x00730240, 0x00731B70
.word 0x00731B70, 0x007334A0
.word 0x007334A0, 0x00734DD0
.word 0x00734DD0, 0x00736700
.word 0x00736700, 0x00736748
.word 0x00736748, 0x00736790
.word 0x00736790, 0x007380C0
.word 0x007380C0, 0x007399F0
.word 0x007399F0, 0x0073B320
.word 0x0073B320, 0x0073CC50
.word 0x0073CC50, 0x0073CC98
.word 0x0073CC98, 0x0073CCE0
.word 0x0073CCE0, 0x0073E610
.word 0x0073E610, 0x0073FF40
.word 0x0073FF40, 0x00741870
.word 0x00741870, 0x007431A0
.word 0x007431A0, 0x007431E8
.word 0x007431E8, 0x00743230
.word 0x00743230, 0x00743230
.word 0x00743230, 0x00744B60
.word 0x00744B60, 0x00744B60
.word 0x00744B60, 0x00746490
.word 0x00746490, 0x007464D8
.word 0x007464D8, 0x00746520
.word 0x00746520, 0x00747E50
.word 0x00747E50, 0x00747E50
.word 0x00747E50, 0x00749780
.word 0x00749780, 0x00749780
.word 0x00749780, 0x007497C8
.word 0x007497C8, 0x00749810
.word 0x00749810, 0x0074B140
.word 0x0074B140, 0x0074CA70
.word 0x0074CA70, 0x0074E3A0
.word 0x0074E3A0, 0x0074FCD0
.word 0x0074FCD0, 0x0074FD18
.word 0x0074FD18, 0x0074FD60
.word 0x0074FD60, 0x00751690
.word 0x00751690, 0x00752FC0
.word 0x00752FC0, 0x007548F0
.word 0x007548F0, 0x00756220
.word 0x00756220, 0x00756268
.word 0x00756268, 0x007562B0
.word 0x007562B0, 0x00757BE0
.word 0x00757BE0, 0x00759510
.word 0x00759510, 0x0075AE40
.word 0x0075AE40, 0x0075C770
.word 0x0075C770, 0x0075C7B8
.word 0x0075C7B8, 0x0075C800
.word 0x0075C800, 0x0075E130
.word 0x0075E130, 0x0075FA60
.word 0x0075FA60, 0x00761390
.word 0x00761390, 0x00762CC0
.word 0x00762CC0, 0x00762D08
.word 0x00762D08, 0x00762D50
.word 0x00762D50, 0x00764680
.word 0x00764680, 0x00765FB0
.word 0x00765FB0, 0x007678E0
.word 0x007678E0, 0x00769210
.word 0x00769210, 0x00769258
.word 0x00769258, 0x007692A0
.word 0x007692A0, 0x0076ABD0
.word 0x0076ABD0, 0x0076C500
.word 0x0076C500, 0x0076DE30
.word 0x0076DE30, 0x0076F760
.word 0x0076F760, 0x0076F7A8
.word 0x0076F7A8, 0x0076F7F0
.word 0x0076F7F0, 0x00771120
.word 0x00771120, 0x00772A50
.word 0x00772A50, 0x00774380
.word 0x00774380, 0x00775CB0
.word 0x00775CB0, 0x00775CF8
.word 0x00775CF8, 0x00775D40
.word 0x00775D40, 0x00777670
.word 0x00777670, 0x00778FA0
.word 0x00778FA0, 0x0077A8D0
.word 0x0077A8D0, 0x0077C200
.word 0x0077C200, 0x0077C248
.word 0x0077C248, 0x0077C290
.word 0x0077C290, 0x0077DBC0
.word 0x0077DBC0, 0x0077F4F0
.word 0x0077F4F0, 0x00780E20
.word 0x00780E20, 0x00782750
.word 0x00782750, 0x00782798
.word 0x00782798, 0x007827E0
.word 0x007827E0, 0x00784110
.word 0x00784110, 0x00785A40
.word 0x00785A40, 0x00787370
.word 0x00787370, 0x00788CA0
.word 0x00788CA0, 0x00788CE8
.word 0x00788CE8, 0x00788D30
.word 0x00788D30, 0x0078A660
.word 0x0078A660, 0x0078BF90
.word 0x0078BF90, 0x0078D8C0
.word 0x0078D8C0, 0x0078F1F0
.word 0x0078F1F0, 0x0078F238
.word 0x0078F238, 0x0078F280
.word 0x0078F280, 0x00790BB0
.word 0x00790BB0, 0x007924E0
.word 0x007924E0, 0x00793E10
.word 0x00793E10, 0x00795740
.word 0x00795740, 0x00795788
.word 0x00795788, 0x007957D0
.word 0x007957D0, 0x00797100
.word 0x00797100, 0x00798A30
.word 0x00798A30, 0x0079A360
.word 0x0079A360, 0x0079BC90
.word 0x0079BC90, 0x0079BCD8
.word 0x0079BCD8, 0x0079BD20
.word 0x0079BD20, 0x0079D650
.word 0x0079D650, 0x0079EF80
.word 0x0079EF80, 0x007A08B0
.word 0x007A08B0, 0x007A21E0
.word 0x007A21E0, 0x007A2228
.word 0x007A2228, 0x007A2270
.word 0x007A2270, 0x007A3BA0
.word 0x007A3BA0, 0x007A54D0
.word 0x007A54D0, 0x007A6E00
.word 0x007A6E00, 0x007A8730
.word 0x007A8730, 0x007A8778
.word 0x007A8778, 0x007A87C0
.word 0x007A87C0, 0x007AA0F0
.word 0x007AA0F0, 0x007ABA20
.word 0x007ABA20, 0x007AD350
.word 0x007AD350, 0x007AEC80
.word 0x007AEC80, 0x007AECC8
.word 0x007AECC8, 0x007AED10
.word 0x007AED10, 0x007B0640
.word 0x007B0640, 0x007B1F70
.word 0x007B1F70, 0x007B38A0
.word 0x007B38A0, 0x007B51D0
.word 0x007B51D0, 0x007B5218
.word 0x007B5218, 0x007B5260
.word 0x007B5260, 0x007B6B90
.word 0x007B6B90, 0x007B84C0
.word 0x007B84C0, 0x007B9DF0
.word 0x007B9DF0, 0x007BB720
.word 0x007BB720, 0x007BB768
.word 0x007BB768, 0x007BB7B0
.word 0x007BB7B0, 0x007BD0E0
.word 0x007BD0E0, 0x007BEA10
.word 0x007BEA10, 0x007C0340
.word 0x007C0340, 0x007C1C70
.word 0x007C1C70, 0x007C1CB8
.word 0x007C1CB8, 0x007C1D00
.word 0x007C1D00, 0x007C3630
.word 0x007C3630, 0x007C4F60
.word 0x007C4F60, 0x007C6890
.word 0x007C6890, 0x007C81C0
.word 0x007C81C0, 0x007C8208
.word 0x007C8208, 0x007C8250
.word 0x007C8250, 0x007C9B80
.word 0x007C9B80, 0x007CB4B0
.word 0x007CB4B0, 0x007CCDE0
.word 0x007CCDE0, 0x007CE710
.word 0x007CE710, 0x007CE758
.word 0x007CE758, 0x007CE7A0
.word 0x007CE7A0, 0x007D00D0
.word 0x007D00D0, 0x007D1A00
.word 0x007D1A00, 0x007D3330
.word 0x007D3330, 0x007D4C60
.word 0x007D4C60, 0x007D4CA8
.word 0x007D4CA8, 0x007D4CF0
.word 0x007D4CF0, 0x007D4CF0
.word 0x007D4CF0, 0x007D6620
.word 0x007D6620, 0x007D6620
.word 0x007D6620, 0x007D7F50
.word 0x007D7F50, 0x007D7F98
.word 0x007D7F98, 0x007D7FE0
.word 0x007D7FE0, 0x007D7FE0
.word 0x007D7FE0, 0x007D9910
.word 0x007D9910, 0x007D9910
.word 0x007D9910, 0x007DB240
.word 0x007DB240, 0x007DB288
.word 0x007DB288, 0x007DB2D0
.word 0x007DB2D0, 0x007DCC00
.word 0x007DCC00, 0x007DE530
.word 0x007DE530, 0x007DFE60
.word 0x007DFE60, 0x007E1790
.word 0x007E1790, 0x007E17D8
.word 0x007E17D8, 0x007E1820
.word 0x007E1820, 0x007E3150
.word 0x007E3150, 0x007E4A80
.word 0x007E4A80, 0x007E63B0
.word 0x007E63B0, 0x007E7CE0
.word 0x007E7CE0, 0x007E7D28
.word 0x007E7D28, 0x007E7D70
.word 0x007E7D70, 0x007E96A0
.word 0x007E96A0, 0x007EAFD0
.word 0x007EAFD0, 0x007EC900
.word 0x007EC900, 0x007EE230
.word 0x007EE230, 0x007EE278
.word 0x007EE278, 0x007EE2C0
.word 0x007EE2C0, 0x007EFBF0
.word 0x007EFBF0, 0x007F1520
.word 0x007F1520, 0x007F2E50
.word 0x007F2E50, 0x007F4780
.word 0x007F4780, 0x007F47C8
.word 0x007F47C8, 0x007F4810
.word 0x007F4810, 0x007F4810
.word 0x007F4810, 0x007F6140
.word 0x007F6140, 0x007F6140
.word 0x007F6140, 0x007F7A70
.word 0x007F7A70, 0x007F7AB8
.word 0x007F7AB8, 0x007F7B00
.word 0x007F7B00, 0x007F7B00
.word 0x007F7B00, 0x007F9430
.word 0x007F9430, 0x007F9430
.word 0x007F9430, 0x007FAD60
.word 0x007FAD60, 0x007FADA8
.word 0x007FADA8, 0x007FADF0
.word 0x007FADF0, 0x007FC720
.word 0x007FC720, 0x007FE050
.word 0x007FE050, 0x007FF980
.word 0x007FF980, 0x008012B0
.word 0x008012B0, 0x008012F8
.word 0x008012F8, 0x00801340
.word 0x00801340, 0x00802C70
.word 0x00802C70, 0x008045A0
.word 0x008045A0, 0x00805ED0
.word 0x00805ED0, 0x00807800
.word 0x00807800, 0x00807848
.word 0x00807848, 0x00807890
.word 0x00807890, 0x008091C0
.word 0x008091C0, 0x0080AAF0
.word 0x0080AAF0, 0x0080C420
.word 0x0080C420, 0x0080DD50
.word 0x0080DD50, 0x0080DD98
.word 0x0080DD98, 0x0080DDE0
.word 0x0080DDE0, 0x0080F710
.word 0x0080F710, 0x00811040
.word 0x00811040, 0x00812970
.word 0x00812970, 0x008142A0
.word 0x008142A0, 0x008142E8
.word 0x008142E8, 0x00814330
.word 0x00814330, 0x00815C60
.word 0x00815C60, 0x00817590
.word 0x00817590, 0x00818EC0
.word 0x00818EC0, 0x0081A7F0
.word 0x0081A7F0, 0x0081A838
.word 0x0081A838, 0x0081A880
.word 0x0081A880, 0x0081C1B0
.word 0x0081C1B0, 0x0081DAE0
.word 0x0081DAE0, 0x0081F410
.word 0x0081F410, 0x00820D40
.word 0x00820D40, 0x00820D88
.word 0x00820D88, 0x00820DD0
.word 0x00820DD0, 0x00822700
.word 0x00822700, 0x00824030
.word 0x00824030, 0x00825960
.word 0x00825960, 0x00827290
.word 0x00827290, 0x008272D8
.word 0x008272D8, 0x00827320
.word 0x00827320, 0x00828C50
.word 0x00828C50, 0x0082A580
.word 0x0082A580, 0x0082BEB0
.word 0x0082BEB0, 0x0082D7E0
.word 0x0082D7E0, 0x0082D828
.word 0x0082D828, 0x0082D870
.word 0x0082D870, 0x0082F1A0
.word 0x0082F1A0, 0x00830AD0
.word 0x00830AD0, 0x00832400
.word 0x00832400, 0x00833D30
.word 0x00833D30, 0x00833D78
.word 0x00833D78, 0x00833DC0
.word 0x00833DC0, 0x008356F0
.word 0x008356F0, 0x00837020
.word 0x00837020, 0x00838950
.word 0x00838950, 0x0083A280
.word 0x0083A280, 0x0083A2C8
.word 0x0083A2C8, 0x0083A310
.word 0x0083A310, 0x0083BC40
.word 0x0083BC40, 0x0083D570
.word 0x0083D570, 0x0083EEA0
.word 0x0083EEA0, 0x008407D0
.word 0x008407D0, 0x00840818
.word 0x00840818, 0x00840860
.word 0x00840860, 0x00842190
.word 0x00842190, 0x00843AC0
.word 0x00843AC0, 0x008453F0
.word 0x008453F0, 0x00846D20
.word 0x00846D20, 0x00846D68
.word 0x00846D68, 0x00846DB0
.word 0x00846DB0, 0x008486E0
.word 0x008486E0, 0x0084A010
.word 0x0084A010, 0x0084B940
.word 0x0084B940, 0x0084D270
.word 0x0084D270, 0x0084D2B8
.word 0x0084D2B8, 0x0084D300
.word 0x0084D300, 0x0084EC30
.word 0x0084EC30, 0x00850560
.word 0x00850560, 0x00851E90
.word 0x00851E90, 0x008537C0
.word 0x008537C0, 0x00853808
.word 0x00853808, 0x00853850
.word 0x00853850, 0x00855180
.word 0x00855180, 0x00856AB0
.word 0x00856AB0, 0x008583E0
.word 0x008583E0, 0x00859D10
.word 0x00859D10, 0x00859D58
.word 0x00859D58, 0x00859DA0
.word 0x00859DA0, 0x0085B6D0
.word 0x0085B6D0, 0x0085D000
.word 0x0085D000, 0x0085E930
.word 0x0085E930, 0x00860260
.word 0x00860260, 0x008602A8
.word 0x008602A8, 0x008602F0
.word 0x008602F0, 0x00861C20
.word 0x00861C20, 0x00863550
.word 0x00863550, 0x00864E80
.word 0x00864E80, 0x008667B0
.word 0x008667B0, 0x008667F8
.word 0x008667F8, 0x00866840
.word 0x00866840, 0x00868170
.word 0x00868170, 0x00869AA0
.word 0x00869AA0, 0x0086B3D0
.word 0x0086B3D0, 0x0086CD00
.word 0x0086CD00, 0x0086CD48
.word 0x0086CD48, 0x0086CD90
.word 0x0086CD90, 0x0086E6C0
.word 0x0086E6C0, 0x0086FFF0
.word 0x0086FFF0, 0x00871920
.word 0x00871920, 0x00873250
.word 0x00873250, 0x00873298
.word 0x00873298, 0x008732E0
.word 0x008732E0, 0x00874C10
.word 0x00874C10, 0x00876540
.word 0x00876540, 0x00877E70
.word 0x00877E70, 0x008797A0
.word 0x008797A0, 0x008797E8
.word 0x008797E8, 0x00879830
.word 0x00879830, 0x0087B160
.word 0x0087B160, 0x0087CA90
.word 0x0087CA90, 0x0087E3C0
.word 0x0087E3C0, 0x0087FCF0
.word 0x0087FCF0, 0x0087FD38
.word 0x0087FD38, 0x0087FD80
.word 0x0087FD80, 0x008816B0
.word 0x008816B0, 0x00882FE0
.word 0x00882FE0, 0x00884910
.word 0x00884910, 0x00886240
.word 0x00886240, 0x00886288
.word 0x00886288, 0x008862D0
.word 0x008862D0, 0x00887C00
.word 0x00887C00, 0x00889530
.word 0x00889530, 0x0088AE60
.word 0x0088AE60, 0x0088C790
.word 0x0088C790, 0x0088C7D8
.word 0x0088C7D8, 0x0088C820
.word 0x0088C820, 0x0088E150
.word 0x0088E150, 0x0088FA80
.word 0x0088FA80, 0x008913B0
.word 0x008913B0, 0x00892CE0
.word 0x00892CE0, 0x00892D28
.word 0x00892D28, 0x00892D70
.word 0x00892D70, 0x008946A0
.word 0x008946A0, 0x00895FD0
.word 0x00895FD0, 0x00897900
.word 0x00897900, 0x00899230
.word 0x00899230, 0x00899278
.word 0x00899278, 0x008992C0
.word 0x008992C0, 0x0089ABF0
.word 0x0089ABF0, 0x0089C520
.word 0x0089C520, 0x0089DE50
.word 0x0089DE50, 0x0089F780
.word 0x0089F780, 0x0089F7C8
.word 0x0089F7C8, 0x0089F810
.word 0x0089F810, 0x008A1140
.word 0x008A1140, 0x008A2A70
.word 0x008A2A70, 0x008A43A0
.word 0x008A43A0, 0x008A5CD0
.word 0x008A5CD0, 0x008A5D18
.word 0x008A5D18, 0x008A5D60
.word 0x008A5D60, 0x008A7690
.word 0x008A7690, 0x008A8FC0
.word 0x008A8FC0, 0x008AA8F0
.word 0x008AA8F0, 0x008AC220
.word 0x008AC220, 0x008AC268
.word 0x008AC268, 0x008AC2B0
.word 0x008AC2B0, 0x008ADBE0
.word 0x008ADBE0, 0x008AF510
.word 0x008AF510, 0x008B0E40
.word 0x008B0E40, 0x008B2770
.word 0x008B2770, 0x008B27B8
.word 0x008B27B8, 0x008B2800
.word 0x008B2800, 0x008B2800
.word 0x008B2800, 0x008B4130
.word 0x008B4130, 0x008B4130
.word 0x008B4130, 0x008B5A60
.word 0x008B5A60, 0x008B5AA8
.word 0x008B5AA8, 0x008B5AF0
.word 0x008B5AF0, 0x008B5AF0
.word 0x008B5AF0, 0x008B7420
.word 0x008B7420, 0x008B7420
.word 0x008B7420, 0x008B8D50
.word 0x008B8D50, 0x008B8D98
.word 0x008B8D98, 0x008B8DE0
.word 0x008B8DE0, 0x008B8DE0
.word 0x008B8DE0, 0x008BA710
.word 0x008BA710, 0x008BA710
.word 0x008BA710, 0x008BC040
.word 0x008BC040, 0x008BC088
.word 0x008BC088, 0x008BC0D0
.word 0x008BC0D0, 0x008BC0D0
.word 0x008BC0D0, 0x008BDA00
.word 0x008BDA00, 0x008BDA00
.word 0x008BDA00, 0x008BF330
.word 0x008BF330, 0x008BF378
.word 0x008BF378, 0x008BF3C0
.word 0x008BF3C0, 0x008BF3C0
.word 0x008BF3C0, 0x008C0CF0
.word 0x008C0CF0, 0x008C0CF0
.word 0x008C0CF0, 0x008C2620
.word 0x008C2620, 0x008C2668
.word 0x008C2668, 0x008C26B0
.word 0x008C26B0, 0x008C26B0
.word 0x008C26B0, 0x008C3FE0
.word 0x008C3FE0, 0x008C3FE0
.word 0x008C3FE0, 0x008C5910
.word 0x008C5910, 0x008C5958
.word 0x008C5958, 0x008C59A0
.word 0x008C59A0, 0x008C72D0
.word 0x008C72D0, 0x008C72D0
.word 0x008C72D0, 0x008C8C00
.word 0x008C8C00, 0x008C8C00
.word 0x008C8C00, 0x008C8C48
.word 0x008C8C48, 0x008C8C90
.word 0x008C8C90, 0x008C8C90
.word 0x008C8C90, 0x008CA5C0
.word 0x008CA5C0, 0x008CA5C0
.word 0x008CA5C0, 0x008CBEF0
.word 0x008CBEF0, 0x008CBF38
.word 0x008CBF38, 0x008CBF80
.word 0x008CBF80, 0x008CBF80
.word 0x008CBF80, 0x008CD8B0
.word 0x008CD8B0, 0x008CD8B0
.word 0x008CD8B0, 0x008CF1E0
.word 0x008CF1E0, 0x008CF228
.word 0x008CF228, 0x008CF270
.word 0x008CF270, 0x008CF270
.word 0x008CF270, 0x008D0BA0
.word 0x008D0BA0, 0x008D0BA0
.word 0x008D0BA0, 0x008D24D0
.word 0x008D24D0, 0x008D2518
.word 0x008D2518, 0x008D2560
.word 0x008D2560, 0x008D2560
.word 0x008D2560, 0x008D3E90
.word 0x008D3E90, 0x008D3E90
.word 0x008D3E90, 0x008D57C0
.word 0x008D57C0, 0x008D5808
.word 0x008D5808, 0x008D5850
.word 0x008D5850, 0x008D5850
.word 0x008D5850, 0x008D7180
.word 0x008D7180, 0x008D7180
.word 0x008D7180, 0x008D8AB0
.word 0x008D8AB0, 0x008D8AF8
.word 0x008D8AF8, 0x008D8B40
.word 0x008D8B40, 0x008D8B40
.word 0x008D8B40, 0x008DA470
.word 0x008DA470, 0x008DA470
.word 0x008DA470, 0x008DBDA0
.word 0x008DBDA0, 0x008DBDE8
.word 0x008DBDE8, 0x008DBE30
.word 0x008DBE30, 0x008DD760
.word 0x008DD760, 0x008DF090
.word 0x008DF090, 0x008E09C0
.word 0x008E09C0, 0x008E22F0
.word 0x008E22F0, 0x008E2338
.word 0x008E2338, 0x008E2380
.word 0x008E2380, 0x008E3CB0
.word 0x008E3CB0, 0x008E55E0
.word 0x008E55E0, 0x008E6F10
.word 0x008E6F10, 0x008E8840
.word 0x008E8840, 0x008E8888
.word 0x008E8888, 0x008E88D0
.word 0x008E88D0, 0x008EA200
.word 0x008EA200, 0x008EBB30
.word 0x008EBB30, 0x008ED460
.word 0x008ED460, 0x008EED90
.word 0x008EED90, 0x008EEDD8
.word 0x008EEDD8, 0x008EEE20
.word 0x008EEE20, 0x008F0750
.word 0x008F0750, 0x008F2080
.word 0x008F2080, 0x008F39B0
.word 0x008F39B0, 0x008F52E0
.word 0x008F52E0, 0x008F5328
.word 0x008F5328, 0x008F5370
.word 0x008F5370, 0x008F6CA0
.word 0x008F6CA0, 0x008F85D0
.word 0x008F85D0, 0x008F9F00
.word 0x008F9F00, 0x008FB830
.word 0x008FB830, 0x008FB878
.word 0x008FB878, 0x008FB8C0
.word 0x008FB8C0, 0x008FD1F0
.word 0x008FD1F0, 0x008FEB20
.word 0x008FEB20, 0x00900450
.word 0x00900450, 0x00901D80
.word 0x00901D80, 0x00901DC8
.word 0x00901DC8, 0x00901E10
.word 0x00901E10, 0x00903740
.word 0x00903740, 0x00905070
.word 0x00905070, 0x009069A0
.word 0x009069A0, 0x009082D0
.word 0x009082D0, 0x00908318
.word 0x00908318, 0x00908360
.word 0x00908360, 0x00909C90
.word 0x00909C90, 0x0090B5C0
.word 0x0090B5C0, 0x0090CEF0
.word 0x0090CEF0, 0x0090E820
.word 0x0090E820, 0x0090E868
.word 0x0090E868, 0x0090E8B0
.word 0x0090E8B0, 0x009101E0
.word 0x009101E0, 0x00911B10
.word 0x00911B10, 0x00913440
.word 0x00913440, 0x00914D70
.word 0x00914D70, 0x00914DB8
.word 0x00914DB8, 0x00914E00
.word 0x00914E00, 0x00916730
.word 0x00916730, 0x00918060
.word 0x00918060, 0x00919990
.word 0x00919990, 0x0091B2C0
.word 0x0091B2C0, 0x0091B308
.word 0x0091B308, 0x0091B350
.word 0x0091B350, 0x0091CC80
.word 0x0091CC80, 0x0091E5B0
.word 0x0091E5B0, 0x0091FEE0
.word 0x0091FEE0, 0x00921810
.word 0x00921810, 0x00921858
.word 0x00921858, 0x009218A0
.word 0x009218A0, 0x009231D0
.word 0x009231D0, 0x00924B00
.word 0x00924B00, 0x00926430
.word 0x00926430, 0x00927D60
.word 0x00927D60, 0x00927DA8
.word 0x00927DA8, 0x00927DF0
.word 0x00927DF0, 0x00929720
.word 0x00929720, 0x0092B050
.word 0x0092B050, 0x0092C980
.word 0x0092C980, 0x0092E2B0
.word 0x0092E2B0, 0x0092E2F8
.word 0x0092E2F8, 0x0092E340
.word 0x0092E340, 0x0092FC70
.word 0x0092FC70, 0x009315A0
.word 0x009315A0, 0x00932ED0
.word 0x00932ED0, 0x00934800
.word 0x00934800, 0x00934848
.word 0x00934848, 0x00934890
.word 0x00934890, 0x009361C0
.word 0x009361C0, 0x00937AF0
.word 0x00937AF0, 0x00939420
.word 0x00939420, 0x0093AD50
.word 0x0093AD50, 0x0093AD98
.word 0x0093AD98, 0x0093ADE0
.word 0x0093ADE0, 0x0093C710
.word 0x0093C710, 0x0093E040
.word 0x0093E040, 0x0093F970
.word 0x0093F970, 0x009412A0
.word 0x009412A0, 0x009412E8
.word 0x009412E8, 0x00941330
.word 0x00941330, 0x00942C60
.word 0x00942C60, 0x00944590
.word 0x00944590, 0x00945EC0
.word 0x00945EC0, 0x009477F0
.word 0x009477F0, 0x00947838
.word 0x00947838, 0x00947880
.word 0x00947880, 0x009491B0
.word 0x009491B0, 0x0094AAE0
.word 0x0094AAE0, 0x0094C410
.word 0x0094C410, 0x0094DD40
.word 0x0094DD40, 0x0094DD88
.word 0x0094DD88, 0x0094DDD0
.word 0x0094DDD0, 0x0094F700
.word 0x0094F700, 0x00951030
.word 0x00951030, 0x00952960
.word 0x00952960, 0x00954290
.word 0x00954290, 0x009542D8
.word 0x009542D8, 0x00954320
.word 0x00954320, 0x00955C50
.word 0x00955C50, 0x00957580
.word 0x00957580, 0x00958EB0
.word 0x00958EB0, 0x0095A7E0
.word 0x0095A7E0, 0x0095A828
.word 0x0095A828, 0x0095A870
.word 0x0095A870, 0x0095C1A0
.word 0x0095C1A0, 0x0095DAD0
.word 0x0095DAD0, 0x0095F400
.word 0x0095F400, 0x00960D30
.word 0x00960D30, 0x00960D78
.word 0x00960D78, 0x00960DC0
.word 0x00960DC0, 0x009626F0
.word 0x009626F0, 0x00964020
.word 0x00964020, 0x00965950
.word 0x00965950, 0x00967280
.word 0x00967280, 0x009672C8
.word 0x009672C8, 0x00967310
.word 0x00967310, 0x00968C40
.word 0x00968C40, 0x0096A570
.word 0x0096A570, 0x0096BEA0
.word 0x0096BEA0, 0x0096D7D0
.word 0x0096D7D0, 0x0096D818
.word 0x0096D818, 0x0096D860
.word 0x0096D860, 0x0096F190
.word 0x0096F190, 0x00970AC0
.word 0x00970AC0, 0x009723F0
.word 0x009723F0, 0x00973D20
.word 0x00973D20, 0x00973D68
.word 0x00973D68, 0x00973DB0
.word 0x00973DB0, 0x009756E0
.word 0x009756E0, 0x00977010
.word 0x00977010, 0x00978940
.word 0x00978940, 0x0097A270
.word 0x0097A270, 0x0097A2B8
.word 0x0097A2B8, 0x0097A300
.word 0x0097A300, 0x0097BC30
.word 0x0097BC30, 0x0097D560
.word 0x0097D560, 0x0097EE90
.word 0x0097EE90, 0x009807C0
.word 0x009807C0, 0x00980808
.word 0x00980808, 0x00980850
.word 0x00980850, 0x00982180
.word 0x00982180, 0x00982180
.word 0x00982180, 0x00983AB0
.word 0x00983AB0, 0x00983AB0
.word 0x00983AB0, 0x00983AF8
.word 0x00983AF8, 0x00983B40
.word 0x00983B40, 0x00983B40
.word 0x00983B40, 0x00985470
.word 0x00985470, 0x00985470
.word 0x00985470, 0x00986DA0
.word 0x00986DA0, 0x00986DE8
.word 0x00986DE8, 0x00986E30
.word 0x00986E30, 0x00988760
.word 0x00988760, 0x0098A090
.word 0x0098A090, 0x0098B9C0
.word 0x0098B9C0, 0x0098D2F0
.word 0x0098D2F0, 0x0098D338
.word 0x0098D338, 0x0098D380
.word 0x0098D380, 0x0098ECB0
.word 0x0098ECB0, 0x0098ECB0
.word 0x0098ECB0, 0x009905E0
.word 0x009905E0, 0x009905E0
.word 0x009905E0, 0x00990628
.word 0x00990628, 0x00990670
.word 0x00990670, 0x00991FA0
.word 0x00991FA0, 0x009938D0
.word 0x009938D0, 0x00995200
.word 0x00995200, 0x00996B30
.word 0x00996B30, 0x00996B78
.word 0x00996B78, 0x00996BC0
.word 0x00996BC0, 0x009984F0
.word 0x009984F0, 0x00999E20
.word 0x00999E20, 0x0099B750
.word 0x0099B750, 0x0099D080
.word 0x0099D080, 0x0099D0C8
.word 0x0099D0C8, 0x0099D110
.word 0x0099D110, 0x0099EA40
.word 0x0099EA40, 0x009A0370
.word 0x009A0370, 0x009A1CA0
.word 0x009A1CA0, 0x009A35D0
.word 0x009A35D0, 0x009A3618
.word 0x009A3618, 0x009A3660
.word 0x009A3660, 0x009A4F90
.word 0x009A4F90, 0x009A68C0
.word 0x009A68C0, 0x009A81F0
.word 0x009A81F0, 0x009A9B20
.word 0x009A9B20, 0x009A9B68
.word 0x009A9B68, 0x009A9BB0
.word 0x009A9BB0, 0x009AB4E0
.word 0x009AB4E0, 0x009ACE10
.word 0x009ACE10, 0x009AE740
.word 0x009AE740, 0x009B0070
.word 0x009B0070, 0x009B00B8
.word 0x009B00B8, 0x009B0100
.word 0x009B0100, 0x009B1A30
.word 0x009B1A30, 0x009B3360
.word 0x009B3360, 0x009B4C90
.word 0x009B4C90, 0x009B65C0
.word 0x009B65C0, 0x009B6608
.word 0x009B6608, 0x009B6650
.word 0x009B6650, 0x009B7F80
.word 0x009B7F80, 0x009B98B0
.word 0x009B98B0, 0x009BB1E0
.word 0x009BB1E0, 0x009BCB10
.word 0x009BCB10, 0x009BCB58
.word 0x009BCB58, 0x009BCBA0
.word 0x009BCBA0, 0x009BE4D0
.word 0x009BE4D0, 0x009BFE00
.word 0x009BFE00, 0x009C1730
.word 0x009C1730, 0x009C3060
.word 0x009C3060, 0x009C30A8
.word 0x009C30A8, 0x009C30F0
.word 0x009C30F0, 0x009C4A20
.word 0x009C4A20, 0x009C6350
.word 0x009C6350, 0x009C7C80
.word 0x009C7C80, 0x009C95B0
.word 0x009C95B0, 0x009C95F8
.word 0x009C95F8, 0x009C9640
.word 0x009C9640, 0x009CAF70
.word 0x009CAF70, 0x009CC8A0
.word 0x009CC8A0, 0x009CE1D0
.word 0x009CE1D0, 0x009CFB00
.word 0x009CFB00, 0x009CFB48
.word 0x009CFB48, 0x009CFB90
.word 0x009CFB90, 0x009D14C0
.word 0x009D14C0, 0x009D2DF0
.word 0x009D2DF0, 0x009D4720
.word 0x009D4720, 0x009D6050
.word 0x009D6050, 0x009D6098
.word 0x009D6098, 0x009D60E0
.word 0x009D60E0, 0x009D7A10
.word 0x009D7A10, 0x009D9340
.word 0x009D9340, 0x009DAC70
.word 0x009DAC70, 0x009DC5A0
.word 0x009DC5A0, 0x009DC5E8
.word 0x009DC5E8, 0x009DC630
.word 0x009DC630, 0x009DDF60
.word 0x009DDF60, 0x009DF890
.word 0x009DF890, 0x009E11C0
.word 0x009E11C0, 0x009E2AF0
.word 0x009E2AF0, 0x009E2B38
.word 0x009E2B38, 0x009E2B80
.word 0x009E2B80, 0x009E44B0
.word 0x009E44B0, 0x009E5DE0
.word 0x009E5DE0, 0x009E7710
.word 0x009E7710, 0x009E9040
.word 0x009E9040, 0x009E9088
.word 0x009E9088, 0x009E90D0
.word 0x009E90D0, 0x009EAA00
.word 0x009EAA00, 0x009EC330
.word 0x009EC330, 0x009EDC60
.word 0x009EDC60, 0x009EF590
.word 0x009EF590, 0x009EF5D8
.word 0x009EF5D8, 0x009EF620
.word 0x009EF620, 0x009F0F50
.word 0x009F0F50, 0x009F2880
.word 0x009F2880, 0x009F41B0
.word 0x009F41B0, 0x009F5AE0
.word 0x009F5AE0, 0x009F5B28
.word 0x009F5B28, 0x009F5B70
.word 0x009F5B70, 0x009F74A0
.word 0x009F74A0, 0x009F8DD0
.word 0x009F8DD0, 0x009FA700
.word 0x009FA700, 0x009FC030
.word 0x009FC030, 0x009FC078
.word 0x009FC078, 0x009FC0C0
.word 0x009FC0C0, 0x009FD9F0
.word 0x009FD9F0, 0x009FF320
.word 0x009FF320, 0x00A00C50
.word 0x00A00C50, 0x00A02580
.word 0x00A02580, 0x00A025C8
.word 0x00A025C8, 0x00A02610
.word 0x00A02610, 0x00A03F40
.word 0x00A03F40, 0x00A05870
.word 0x00A05870, 0x00A071A0
.word 0x00A071A0, 0x00A08AD0
.word 0x00A08AD0, 0x00A08B18
.word 0x00A08B18, 0x00A08B60
.word 0x00A08B60, 0x00A08B60
.word 0x00A08B60, 0x00A0A490
.word 0x00A0A490, 0x00A0A490
.word 0x00A0A490, 0x00A0BDC0
.word 0x00A0BDC0, 0x00A0BE08
.word 0x00A0BE08, 0x00A0BE50
.word 0x00A0BE50, 0x00A0BE50
.word 0x00A0BE50, 0x00A0D780
.word 0x00A0D780, 0x00A0D780
.word 0x00A0D780, 0x00A0F0B0
.word 0x00A0F0B0, 0x00A0F0F8
.word 0x00A0F0F8, 0x00A0F140
.word 0x00A0F140, 0x00A10A70
.word 0x00A10A70, 0x00A123A0
.word 0x00A123A0, 0x00A13CD0
.word 0x00A13CD0, 0x00A15600
.word 0x00A15600, 0x00A15648
.word 0x00A15648, 0x00A15690
.word 0x00A15690, 0x00A16FC0
.word 0x00A16FC0, 0x00A188F0
.word 0x00A188F0, 0x00A1A220
.word 0x00A1A220, 0x00A1BB50
.word 0x00A1BB50, 0x00A1BB98
.word 0x00A1BB98, 0x00A1BBE0
.word 0x00A1BBE0, 0x00A1D510
.word 0x00A1D510, 0x00A1D510
.word 0x00A1D510, 0x00A1EE40
.word 0x00A1EE40, 0x00A1EE40
.word 0x00A1EE40, 0x00A1EE88
.word 0x00A1EE88, 0x00A1EED0
.word 0x00A1EED0, 0x00A20800
.word 0x00A20800, 0x00A22130
.word 0x00A22130, 0x00A23A60
.word 0x00A23A60, 0x00A25390
.word 0x00A25390, 0x00A253D8
.word 0x00A253D8, 0x00A25420
.word 0x00A25420, 0x00A26D50
.word 0x00A26D50, 0x00A28680
.word 0x00A28680, 0x00A29FB0
.word 0x00A29FB0, 0x00A2B8E0
.word 0x00A2B8E0, 0x00A2B928
.word 0x00A2B928, 0x00A2B970
.word 0x00A2B970, 0x00A2D2A0
.word 0x00A2D2A0, 0x00A2EBD0
.word 0x00A2EBD0, 0x00A30500
.word 0x00A30500, 0x00A31E30
.word 0x00A31E30, 0x00A31E78
.word 0x00A31E78, 0x00A31EC0
.word 0x00A31EC0, 0x00A337F0
.word 0x00A337F0, 0x00A35120
.word 0x00A35120, 0x00A36A50
.word 0x00A36A50, 0x00A38380
.word 0x00A38380, 0x00A383C8
.word 0x00A383C8, 0x00A38410
.word 0x00A38410, 0x00A39D40
.word 0x00A39D40, 0x00A3B670
.word 0x00A3B670, 0x00A3CFA0
.word 0x00A3CFA0, 0x00A3E8D0
.word 0x00A3E8D0, 0x00A3E918
.word 0x00A3E918, 0x00A3E960
.word 0x00A3E960, 0x00A40290
.word 0x00A40290, 0x00A41BC0
.word 0x00A41BC0, 0x00A434F0
.word 0x00A434F0, 0x00A44E20
.word 0x00A44E20, 0x00A44E68
.word 0x00A44E68, 0x00A44EB0
.word 0x00A44EB0, 0x00A467E0
.word 0x00A467E0, 0x00A48110
.word 0x00A48110, 0x00A49A40
.word 0x00A49A40, 0x00A4B370
.word 0x00A4B370, 0x00A4B3B8
.word 0x00A4B3B8, 0x00A4B400
.word 0x00A4B400, 0x00A4CD30
.word 0x00A4CD30, 0x00A4E660
.word 0x00A4E660, 0x00A4FF90
.word 0x00A4FF90, 0x00A518C0
.word 0x00A518C0, 0x00A51908
.word 0x00A51908, 0x00A51950
.word 0x00A51950, 0x00A53280
.word 0x00A53280, 0x00A54BB0
.word 0x00A54BB0, 0x00A564E0
.word 0x00A564E0, 0x00A57E10
.word 0x00A57E10, 0x00A57E58
.word 0x00A57E58, 0x00A57EA0
.word 0x00A57EA0, 0x00A597D0
.word 0x00A597D0, 0x00A5B100
.word 0x00A5B100, 0x00A5CA30
.word 0x00A5CA30, 0x00A5E360
.word 0x00A5E360, 0x00A5E3A8
.word 0x00A5E3A8, 0x00A5E3F0
.word 0x00A5E3F0, 0x00A5FD20
.word 0x00A5FD20, 0x00A61650
.word 0x00A61650, 0x00A62F80
.word 0x00A62F80, 0x00A648B0
.word 0x00A648B0, 0x00A648F8
.word 0x00A648F8, 0x00A64940
.word 0x00A64940, 0x00A66270
.word 0x00A66270, 0x00A67BA0
.word 0x00A67BA0, 0x00A694D0
.word 0x00A694D0, 0x00A6AE00
.word 0x00A6AE00, 0x00A6AE48
.word 0x00A6AE48, 0x00A6AE90
.word 0x00A6AE90, 0x00A6C7C0
.word 0x00A6C7C0, 0x00A6E0F0
.word 0x00A6E0F0, 0x00A6FA20
.word 0x00A6FA20, 0x00A71350
.word 0x00A71350, 0x00A71398
.word 0x00A71398, 0x00A713E0
.word 0x00A713E0, 0x00A72D10
.word 0x00A72D10, 0x00A74640
.word 0x00A74640, 0x00A75F70
.word 0x00A75F70, 0x00A778A0
.word 0x00A778A0, 0x00A778E8
.word 0x00A778E8, 0x00A77930
.word 0x00A77930, 0x00A79260
.word 0x00A79260, 0x00A7AB90
.word 0x00A7AB90, 0x00A7C4C0
.word 0x00A7C4C0, 0x00A7DDF0
.word 0x00A7DDF0, 0x00A7DE38
.word 0x00A7DE38, 0x00A7DE80
.word 0x00A7DE80, 0x00A7F7B0
.word 0x00A7F7B0, 0x00A810E0
.word 0x00A810E0, 0x00A82A10
.word 0x00A82A10, 0x00A84340
.word 0x00A84340, 0x00A84388
.word 0x00A84388, 0x00A843D0
.word 0x00A843D0, 0x00A85D00
.word 0x00A85D00, 0x00A87630
.word 0x00A87630, 0x00A88F60
.word 0x00A88F60, 0x00A8A890
.word 0x00A8A890, 0x00A8A8D8
.word 0x00A8A8D8, 0x00A8A920
.word 0x00A8A920, 0x00A8C250
.word 0x00A8C250, 0x00A8DB80
.word 0x00A8DB80, 0x00A8F4B0
.word 0x00A8F4B0, 0x00A90DE0
.word 0x00A90DE0, 0x00A90E28
.word 0x00A90E28, 0x00A90E70
.word 0x00A90E70, 0x00A927A0
.word 0x00A927A0, 0x00A940D0
.word 0x00A940D0, 0x00A95A00
.word 0x00A95A00, 0x00A97330
.word 0x00A97330, 0x00A97378
.word 0x00A97378, 0x00A973C0
.word 0x00A973C0, 0x00A98CF0
.word 0x00A98CF0, 0x00A9A620
.word 0x00A9A620, 0x00A9BF50
.word 0x00A9BF50, 0x00A9D880
.word 0x00A9D880, 0x00A9D8C8
.word 0x00A9D8C8, 0x00A9D910
.word 0x00A9D910, 0x00A9F240
.word 0x00A9F240, 0x00AA0B70
.word 0x00AA0B70, 0x00AA24A0
.word 0x00AA24A0, 0x00AA3DD0
.word 0x00AA3DD0, 0x00AA3E18
.word 0x00AA3E18, 0x00AA3E60
.word 0x00AA3E60, 0x00AA3E60
.word 0x00AA3E60, 0x00AA5790
.word 0x00AA5790, 0x00AA5790
.word 0x00AA5790, 0x00AA70C0
.word 0x00AA70C0, 0x00AA7108
.word 0x00AA7108, 0x00AA7150
.word 0x00AA7150, 0x00AA8A80
.word 0x00AA8A80, 0x00AAA3B0
.word 0x00AAA3B0, 0x00AABCE0
.word 0x00AABCE0, 0x00AAD610
.word 0x00AAD610, 0x00AAD658
.word 0x00AAD658, 0x00AAD6A0
.word 0x00AAD6A0, 0x00AAEFD0
.word 0x00AAEFD0, 0x00AB0900
.word 0x00AB0900, 0x00AB2230
.word 0x00AB2230, 0x00AB3B60
.word 0x00AB3B60, 0x00AB3BA8
.word 0x00AB3BA8, 0x00AB3BF0
.word 0x00AB3BF0, 0x00AB5520
.word 0x00AB5520, 0x00AB6E50
.word 0x00AB6E50, 0x00AB8780
.word 0x00AB8780, 0x00ABA0B0
.word 0x00ABA0B0, 0x00ABA0F8
.word 0x00ABA0F8, 0x00ABA140
.word 0x00ABA140, 0x00ABBA70
.word 0x00ABBA70, 0x00ABD3A0
.word 0x00ABD3A0, 0x00ABECD0
.word 0x00ABECD0, 0x00AC0600
.word 0x00AC0600, 0x00AC0648
.word 0x00AC0648, 0x00AC0690
.word 0x00AC0690, 0x00AC1FC0
.word 0x00AC1FC0, 0x00AC38F0
.word 0x00AC38F0, 0x00AC5220
.word 0x00AC5220, 0x00AC6B50
.word 0x00AC6B50, 0x00AC6B98
.word 0x00AC6B98, 0x00AC6BE0
.word 0x00AC6BE0, 0x00AC8510
.word 0x00AC8510, 0x00AC9E40
.word 0x00AC9E40, 0x00ACB770
.word 0x00ACB770, 0x00ACD0A0
.word 0x00ACD0A0, 0x00ACD0E8
.word 0x00ACD0E8, 0x00ACD130
.word 0x00ACD130, 0x00ACEA60
.word 0x00ACEA60, 0x00AD0390
.word 0x00AD0390, 0x00AD1CC0
.word 0x00AD1CC0, 0x00AD35F0
.word 0x00AD35F0, 0x00AD3638
.word 0x00AD3638, 0x00AD3680
.word 0x00AD3680, 0x00AD4FB0
.word 0x00AD4FB0, 0x00AD68E0
.word 0x00AD68E0, 0x00AD8210
.word 0x00AD8210, 0x00AD9B40
.word 0x00AD9B40, 0x00AD9B88
.word 0x00AD9B88, 0x00AD9BD0
.word 0x00AD9BD0, 0x00ADB500
.word 0x00ADB500, 0x00ADCE30
.word 0x00ADCE30, 0x00ADE760
.word 0x00ADE760, 0x00AE0090
.word 0x00AE0090, 0x00AE00D8
.word 0x00AE00D8, 0x00AE0120
.word 0x00AE0120, 0x00AE1A50
.word 0x00AE1A50, 0x00AE3380
.word 0x00AE3380, 0x00AE4CB0
.word 0x00AE4CB0, 0x00AE65E0
.word 0x00AE65E0, 0x00AE6628
.word 0x00AE6628, 0x00AE6670
.word 0x00AE6670, 0x00AE7FA0
.word 0x00AE7FA0, 0x00AE98D0
.word 0x00AE98D0, 0x00AEB200
.word 0x00AEB200, 0x00AECB30
.word 0x00AECB30, 0x00AECB78
.word 0x00AECB78, 0x00AECBC0
.word 0x00AECBC0, 0x00AECBC0
.word 0x00AECBC0, 0x00AEE4F0
.word 0x00AEE4F0, 0x00AEE4F0
.word 0x00AEE4F0, 0x00AEFE20
.word 0x00AEFE20, 0x00AEFE68
.word 0x00AEFE68, 0x00AEFEB0
.word 0x00AEFEB0, 0x00AEFEB0
.word 0x00AEFEB0, 0x00AF17E0
.word 0x00AF17E0, 0x00AF17E0
.word 0x00AF17E0, 0x00AF3110
.word 0x00AF3110, 0x00AF3158
.word 0x00AF3158, 0x00AF31A0
.word 0x00AF31A0, 0x00AF4AD0
.word 0x00AF4AD0, 0x00AF6400
.word 0x00AF6400, 0x00AF7D30
.word 0x00AF7D30, 0x00AF9660
.word 0x00AF9660, 0x00AF96A8
.word 0x00AF96A8, 0x00AF96F0
.word 0x00AF96F0, 0x00AFB020
.word 0x00AFB020, 0x00AFC950
.word 0x00AFC950, 0x00AFE280
.word 0x00AFE280, 0x00AFFBB0
.word 0x00AFFBB0, 0x00AFFBF8
.word 0x00AFFBF8, 0x00AFFC40
.word 0x00AFFC40, 0x00B01570
.word 0x00B01570, 0x00B01570
.word 0x00B01570, 0x00B02EA0
.word 0x00B02EA0, 0x00B02EA0
.word 0x00B02EA0, 0x00B02EE8
.word 0x00B02EE8, 0x00B02F30
.word 0x00B02F30, 0x00B02F30
.word 0x00B02F30, 0x00B04860
.word 0x00B04860, 0x00B04860
.word 0x00B04860, 0x00B06190
.word 0x00B06190, 0x00B061D8
.word 0x00B061D8, 0x00B06220
.word 0x00B06220, 0x00B06220
.word 0x00B06220, 0x00B07B50
.word 0x00B07B50, 0x00B07B50
.word 0x00B07B50, 0x00B09480
.word 0x00B09480, 0x00B094C8
.word 0x00B094C8, 0x00B09510
.word 0x00B09510, 0x00B09510
.word 0x00B09510, 0x00B0AE40
.word 0x00B0AE40, 0x00B0AE40
.word 0x00B0AE40, 0x00B0C770
.word 0x00B0C770, 0x00B0C7B8
.word 0x00B0C7B8, 0x00B0C800
.word 0x00B0C800, 0x00B0C800
.word 0x00B0C800, 0x00B0E130
.word 0x00B0E130, 0x00B0E130
.word 0x00B0E130, 0x00B0FA60
.word 0x00B0FA60, 0x00B0FAA8
.word 0x00B0FAA8, 0x00B0FAF0
.word 0x00B0FAF0, 0x00B0FAF0
.word 0x00B0FAF0, 0x00B11420
.word 0x00B11420, 0x00B11420
.word 0x00B11420, 0x00B12D50
.word 0x00B12D50, 0x00B12D98
.word 0x00B12D98, 0x00B12DE0
.word 0x00B12DE0, 0x00B12DE0
.word 0x00B12DE0, 0x00B14710
.word 0x00B14710, 0x00B14710
.word 0x00B14710, 0x00B16040
.word 0x00B16040, 0x00B16088
.word 0x00B16088, 0x00B160D0
.word 0x00B160D0, 0x00B17A00
.word 0x00B17A00, 0x00B19330
.word 0x00B19330, 0x00B1AC60
.word 0x00B1AC60, 0x00B1C590
.word 0x00B1C590, 0x00B1C5D8
.word 0x00B1C5D8, 0x00B1C620
.word 0x00B1C620, 0x00B1C620
.word 0x00B1C620, 0x00B1DF50
.word 0x00B1DF50, 0x00B1DF50
.word 0x00B1DF50, 0x00B1F880
.word 0x00B1F880, 0x00B1F8C8
.word 0x00B1F8C8, 0x00B1F910
.word 0x00B1F910, 0x00B1F910
.word 0x00B1F910, 0x00B21240
.word 0x00B21240, 0x00B21240
.word 0x00B21240, 0x00B22B70
.word 0x00B22B70, 0x00B22BB8
.word 0x00B22BB8, 0x00B22C00
.word 0x00B22C00, 0x00B24530
.word 0x00B24530, 0x00B24530
.word 0x00B24530, 0x00B25E60
.word 0x00B25E60, 0x00B25E60
.word 0x00B25E60, 0x00B25EA8
.word 0x00B25EA8, 0x00B25EF0
.word 0x00B25EF0, 0x00B25EF0
.word 0x00B25EF0, 0x00B27820
.word 0x00B27820, 0x00B27820
.word 0x00B27820, 0x00B29150
.word 0x00B29150, 0x00B29198
.word 0x00B29198, 0x00B291E0
.word 0x00B291E0, 0x00B291E0
.word 0x00B291E0, 0x00B2AB10
.word 0x00B2AB10, 0x00B2AB10
.word 0x00B2AB10, 0x00B2C440
.word 0x00B2C440, 0x00B2C488
.word 0x00B2C488, 0x00B2C4D0
.word 0x00B2C4D0, 0x00B2C4D0
.word 0x00B2C4D0, 0x00B2DE00
.word 0x00B2DE00, 0x00B2DE00
.word 0x00B2DE00, 0x00B2F730
.word 0x00B2F730, 0x00B2F778
.word 0x00B2F778, 0x00B2F7C0
.word 0x00B2F7C0, 0x00B2F7C0
.word 0x00B2F7C0, 0x00B310F0
.word 0x00B310F0, 0x00B310F0
.word 0x00B310F0, 0x00B32A20
.word 0x00B32A20, 0x00B32A68
.word 0x00B32A68, 0x00B32AB0
.word 0x00B32AB0, 0x00B32AB0
.word 0x00B32AB0, 0x00B343E0
.word 0x00B343E0, 0x00B343E0
.word 0x00B343E0, 0x00B35D10
.word 0x00B35D10, 0x00B35D58
.word 0x00B35D58, 0x00B35DA0
; 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 0x00B35DA8 ; chunk size
.incbin "baserom.nds", 0x10354D4, 0x1930
.incbin "baserom.nds", 0x1036E04, 0x1930
.incbin "baserom.nds", 0x1038734, 0x1930
.incbin "baserom.nds", 0x103A064, 0x1930
.incbin "baserom.nds", 0x103B994, 0x48
.incbin "baserom.nds", 0x103B9DC, 0x48
.incbin "baserom.nds", 0x103BA24, 0x1930
.incbin "baserom.nds", 0x103D354, 0x1930
.incbin "baserom.nds", 0x103EC84, 0x1930
.incbin "baserom.nds", 0x10405B4, 0x1930
.incbin "baserom.nds", 0x1041EE4, 0x48
.incbin "baserom.nds", 0x1041F2C, 0x48
.incbin "baserom.nds", 0x1041F74, 0x1930
.incbin "baserom.nds", 0x10438A4, 0x1930
.incbin "baserom.nds", 0x10451D4, 0x1930
.incbin "baserom.nds", 0x1046B04, 0x1930
.incbin "baserom.nds", 0x1048434, 0x48
.incbin "baserom.nds", 0x104847C, 0x48
.incbin "baserom.nds", 0x10484C4, 0x1930
.incbin "baserom.nds", 0x1049DF4, 0x1930
.incbin "baserom.nds", 0x104B724, 0x1930
.incbin "baserom.nds", 0x104D054, 0x1930
.incbin "baserom.nds", 0x104E984, 0x48
.incbin "baserom.nds", 0x104E9CC, 0x48
.incbin "baserom.nds", 0x104EA14, 0x1930
.incbin "baserom.nds", 0x1050344, 0x1930
.incbin "baserom.nds", 0x1051C74, 0x1930
.incbin "baserom.nds", 0x10535A4, 0x1930
.incbin "baserom.nds", 0x1054ED4, 0x48
.incbin "baserom.nds", 0x1054F1C, 0x48
.incbin "baserom.nds", 0x1054F64, 0x1930
.incbin "baserom.nds", 0x1056894, 0x1930
.incbin "baserom.nds", 0x10581C4, 0x1930
.incbin "baserom.nds", 0x1059AF4, 0x1930
.incbin "baserom.nds", 0x105B424, 0x48
.incbin "baserom.nds", 0x105B46C, 0x48
.incbin "baserom.nds", 0x105B4B4, 0x1930
.incbin "baserom.nds", 0x105CDE4, 0x1930
.incbin "baserom.nds", 0x105E714, 0x1930
.incbin "baserom.nds", 0x1060044, 0x1930
.incbin "baserom.nds", 0x1061974, 0x48
.incbin "baserom.nds", 0x10619BC, 0x48
.incbin "baserom.nds", 0x1061A04, 0x1930
.incbin "baserom.nds", 0x1063334, 0x1930
.incbin "baserom.nds", 0x1064C64, 0x1930
.incbin "baserom.nds", 0x1066594, 0x1930
.incbin "baserom.nds", 0x1067EC4, 0x48
.incbin "baserom.nds", 0x1067F0C, 0x48
.incbin "baserom.nds", 0x1067F54, 0x1930
.incbin "baserom.nds", 0x1069884, 0x1930
.incbin "baserom.nds", 0x106B1B4, 0x1930
.incbin "baserom.nds", 0x106CAE4, 0x1930
.incbin "baserom.nds", 0x106E414, 0x48
.incbin "baserom.nds", 0x106E45C, 0x48
.incbin "baserom.nds", 0x106E4A4, 0x1930
.incbin "baserom.nds", 0x106FDD4, 0x1930
.incbin "baserom.nds", 0x1071704, 0x1930
.incbin "baserom.nds", 0x1073034, 0x1930
.incbin "baserom.nds", 0x1074964, 0x48
.incbin "baserom.nds", 0x10749AC, 0x48
.incbin "baserom.nds", 0x10749F4, 0x1930
.incbin "baserom.nds", 0x1076324, 0x1930
.incbin "baserom.nds", 0x1077C54, 0x1930
.incbin "baserom.nds", 0x1079584, 0x1930
.incbin "baserom.nds", 0x107AEB4, 0x48
.incbin "baserom.nds", 0x107AEFC, 0x48
.incbin "baserom.nds", 0x107AF44, 0x1930
.incbin "baserom.nds", 0x107C874, 0x1930
.incbin "baserom.nds", 0x107E1A4, 0x1930
.incbin "baserom.nds", 0x107FAD4, 0x1930
.incbin "baserom.nds", 0x1081404, 0x48
.incbin "baserom.nds", 0x108144C, 0x48
.incbin "baserom.nds", 0x1081494, 0x1930
.incbin "baserom.nds", 0x1082DC4, 0x1930
.incbin "baserom.nds", 0x10846F4, 0x1930
.incbin "baserom.nds", 0x1086024, 0x1930
.incbin "baserom.nds", 0x1087954, 0x48
.incbin "baserom.nds", 0x108799C, 0x48
.incbin "baserom.nds", 0x10879E4, 0x1930
.incbin "baserom.nds", 0x1089314, 0x1930
.incbin "baserom.nds", 0x108AC44, 0x1930
.incbin "baserom.nds", 0x108C574, 0x1930
.incbin "baserom.nds", 0x108DEA4, 0x48
.incbin "baserom.nds", 0x108DEEC, 0x48
.incbin "baserom.nds", 0x108DF34, 0x1930
.incbin "baserom.nds", 0x108F864, 0x1930
.incbin "baserom.nds", 0x1091194, 0x1930
.incbin "baserom.nds", 0x1092AC4, 0x1930
.incbin "baserom.nds", 0x10943F4, 0x48
.incbin "baserom.nds", 0x109443C, 0x48
.incbin "baserom.nds", 0x1094484, 0x1930
.incbin "baserom.nds", 0x1095DB4, 0x1930
.incbin "baserom.nds", 0x10976E4, 0x1930
.incbin "baserom.nds", 0x1099014, 0x1930
.incbin "baserom.nds", 0x109A944, 0x48
.incbin "baserom.nds", 0x109A98C, 0x48
.incbin "baserom.nds", 0x109A9D4, 0x1930
.incbin "baserom.nds", 0x109C304, 0x1930
.incbin "baserom.nds", 0x109DC34, 0x1930
.incbin "baserom.nds", 0x109F564, 0x1930
.incbin "baserom.nds", 0x10A0E94, 0x48
.incbin "baserom.nds", 0x10A0EDC, 0x48
.incbin "baserom.nds", 0x10A0F24, 0x1930
.incbin "baserom.nds", 0x10A2854, 0x1930
.incbin "baserom.nds", 0x10A4184, 0x1930
.incbin "baserom.nds", 0x10A5AB4, 0x1930
.incbin "baserom.nds", 0x10A73E4, 0x48
.incbin "baserom.nds", 0x10A742C, 0x48
.incbin "baserom.nds", 0x10A7474, 0x1930
.incbin "baserom.nds", 0x10A8DA4, 0x1930
.incbin "baserom.nds", 0x10AA6D4, 0x1930
.incbin "baserom.nds", 0x10AC004, 0x1930
.incbin "baserom.nds", 0x10AD934, 0x48
.incbin "baserom.nds", 0x10AD97C, 0x48
.incbin "baserom.nds", 0x10AD9C4, 0x1930
.incbin "baserom.nds", 0x10AF2F4, 0x1930
.incbin "baserom.nds", 0x10B0C24, 0x1930
.incbin "baserom.nds", 0x10B2554, 0x1930
.incbin "baserom.nds", 0x10B3E84, 0x48
.incbin "baserom.nds", 0x10B3ECC, 0x48
.incbin "baserom.nds", 0x10B3F14, 0x1930
.incbin "baserom.nds", 0x10B5844, 0x1930
.incbin "baserom.nds", 0x10B7174, 0x1930
.incbin "baserom.nds", 0x10B8AA4, 0x1930
.incbin "baserom.nds", 0x10BA3D4, 0x48
.incbin "baserom.nds", 0x10BA41C, 0x48
.incbin "baserom.nds", 0x10BA464, 0x1930
.incbin "baserom.nds", 0x10BBD94, 0x1930
.incbin "baserom.nds", 0x10BD6C4, 0x1930
.incbin "baserom.nds", 0x10BEFF4, 0x1930
.incbin "baserom.nds", 0x10C0924, 0x48
.incbin "baserom.nds", 0x10C096C, 0x48
.incbin "baserom.nds", 0x10C09B4, 0x1930
.incbin "baserom.nds", 0x10C22E4, 0x1930
.incbin "baserom.nds", 0x10C3C14, 0x1930
.incbin "baserom.nds", 0x10C5544, 0x1930
.incbin "baserom.nds", 0x10C6E74, 0x48
.incbin "baserom.nds", 0x10C6EBC, 0x48
.incbin "baserom.nds", 0x10C6F04, 0x1930
.incbin "baserom.nds", 0x10C8834, 0x1930
.incbin "baserom.nds", 0x10CA164, 0x1930
.incbin "baserom.nds", 0x10CBA94, 0x1930
.incbin "baserom.nds", 0x10CD3C4, 0x48
.incbin "baserom.nds", 0x10CD40C, 0x48
.incbin "baserom.nds", 0x10CD454, 0x1930
.incbin "baserom.nds", 0x10CED84, 0x1930
.incbin "baserom.nds", 0x10D06B4, 0x1930
.incbin "baserom.nds", 0x10D1FE4, 0x1930
.incbin "baserom.nds", 0x10D3914, 0x48
.incbin "baserom.nds", 0x10D395C, 0x48
.incbin "baserom.nds", 0x10D39A4, 0x1930
.incbin "baserom.nds", 0x10D52D4, 0x1930
.incbin "baserom.nds", 0x10D6C04, 0x1930
.incbin "baserom.nds", 0x10D8534, 0x1930
.incbin "baserom.nds", 0x10D9E64, 0x48
.incbin "baserom.nds", 0x10D9EAC, 0x48
.incbin "baserom.nds", 0x10D9EF4, 0x1930
.incbin "baserom.nds", 0x10DB824, 0x1930
.incbin "baserom.nds", 0x10DD154, 0x1930
.incbin "baserom.nds", 0x10DEA84, 0x1930
.incbin "baserom.nds", 0x10E03B4, 0x48
.incbin "baserom.nds", 0x10E03FC, 0x48
.incbin "baserom.nds", 0x10E0444, 0x1930
.incbin "baserom.nds", 0x10E1D74, 0x1930
.incbin "baserom.nds", 0x10E36A4, 0x1930
.incbin "baserom.nds", 0x10E4FD4, 0x1930
.incbin "baserom.nds", 0x10E6904, 0x48
.incbin "baserom.nds", 0x10E694C, 0x48
.incbin "baserom.nds", 0x10E6994, 0x1930
.incbin "baserom.nds", 0x10E82C4, 0x1930
.incbin "baserom.nds", 0x10E9BF4, 0x1930
.incbin "baserom.nds", 0x10EB524, 0x1930
.incbin "baserom.nds", 0x10ECE54, 0x48
.incbin "baserom.nds", 0x10ECE9C, 0x48
.incbin "baserom.nds", 0x10ECEE4, 0x1930
.incbin "baserom.nds", 0x10EE814, 0x0
.incbin "baserom.nds", 0x10EE814, 0x1930
.incbin "baserom.nds", 0x10F0144, 0x0
.incbin "baserom.nds", 0x10F0144, 0x48
.incbin "baserom.nds", 0x10F018C, 0x48
.incbin "baserom.nds", 0x10F01D4, 0x1930
.incbin "baserom.nds", 0x10F1B04, 0x0
.incbin "baserom.nds", 0x10F1B04, 0x1930
.incbin "baserom.nds", 0x10F3434, 0x0
.incbin "baserom.nds", 0x10F3434, 0x48
.incbin "baserom.nds", 0x10F347C, 0x48
.incbin "baserom.nds", 0x10F34C4, 0x1930
.incbin "baserom.nds", 0x10F4DF4, 0x0
.incbin "baserom.nds", 0x10F4DF4, 0x1930
.incbin "baserom.nds", 0x10F6724, 0x0
.incbin "baserom.nds", 0x10F6724, 0x48
.incbin "baserom.nds", 0x10F676C, 0x48
.incbin "baserom.nds", 0x10F67B4, 0x0
.incbin "baserom.nds", 0x10F67B4, 0x1930
.incbin "baserom.nds", 0x10F80E4, 0x0
.incbin "baserom.nds", 0x10F80E4, 0x1930
.incbin "baserom.nds", 0x10F9A14, 0x48
.incbin "baserom.nds", 0x10F9A5C, 0x48
.incbin "baserom.nds", 0x10F9AA4, 0x0
.incbin "baserom.nds", 0x10F9AA4, 0x1930
.incbin "baserom.nds", 0x10FB3D4, 0x0
.incbin "baserom.nds", 0x10FB3D4, 0x1930
.incbin "baserom.nds", 0x10FCD04, 0x48
.incbin "baserom.nds", 0x10FCD4C, 0x48
.incbin "baserom.nds", 0x10FCD94, 0x0
.incbin "baserom.nds", 0x10FCD94, 0x1930
.incbin "baserom.nds", 0x10FE6C4, 0x0
.incbin "baserom.nds", 0x10FE6C4, 0x1930
.incbin "baserom.nds", 0x10FFFF4, 0x48
.incbin "baserom.nds", 0x110003C, 0x48
.incbin "baserom.nds", 0x1100084, 0x1930
.incbin "baserom.nds", 0x11019B4, 0x1930
.incbin "baserom.nds", 0x11032E4, 0x1930
.incbin "baserom.nds", 0x1104C14, 0x1930
.incbin "baserom.nds", 0x1106544, 0x48
.incbin "baserom.nds", 0x110658C, 0x48
.incbin "baserom.nds", 0x11065D4, 0x1930
.incbin "baserom.nds", 0x1107F04, 0x1930
.incbin "baserom.nds", 0x1109834, 0x1930
.incbin "baserom.nds", 0x110B164, 0x1930
.incbin "baserom.nds", 0x110CA94, 0x48
.incbin "baserom.nds", 0x110CADC, 0x48
.incbin "baserom.nds", 0x110CB24, 0x1930
.incbin "baserom.nds", 0x110E454, 0x1930
.incbin "baserom.nds", 0x110FD84, 0x1930
.incbin "baserom.nds", 0x11116B4, 0x1930
.incbin "baserom.nds", 0x1112FE4, 0x48
.incbin "baserom.nds", 0x111302C, 0x48
.incbin "baserom.nds", 0x1113074, 0x1930
.incbin "baserom.nds", 0x11149A4, 0x1930
.incbin "baserom.nds", 0x11162D4, 0x1930
.incbin "baserom.nds", 0x1117C04, 0x1930
.incbin "baserom.nds", 0x1119534, 0x48
.incbin "baserom.nds", 0x111957C, 0x48
.incbin "baserom.nds", 0x11195C4, 0x1930
.incbin "baserom.nds", 0x111AEF4, 0x1930
.incbin "baserom.nds", 0x111C824, 0x1930
.incbin "baserom.nds", 0x111E154, 0x1930
.incbin "baserom.nds", 0x111FA84, 0x48
.incbin "baserom.nds", 0x111FACC, 0x48
.incbin "baserom.nds", 0x111FB14, 0x1930
.incbin "baserom.nds", 0x1121444, 0x1930
.incbin "baserom.nds", 0x1122D74, 0x1930
.incbin "baserom.nds", 0x11246A4, 0x1930
.incbin "baserom.nds", 0x1125FD4, 0x48
.incbin "baserom.nds", 0x112601C, 0x48
.incbin "baserom.nds", 0x1126064, 0x1930
.incbin "baserom.nds", 0x1127994, 0x1930
.incbin "baserom.nds", 0x11292C4, 0x1930
.incbin "baserom.nds", 0x112ABF4, 0x1930
.incbin "baserom.nds", 0x112C524, 0x48
.incbin "baserom.nds", 0x112C56C, 0x48
.incbin "baserom.nds", 0x112C5B4, 0x1930
.incbin "baserom.nds", 0x112DEE4, 0x1930
.incbin "baserom.nds", 0x112F814, 0x1930
.incbin "baserom.nds", 0x1131144, 0x1930
.incbin "baserom.nds", 0x1132A74, 0x48
.incbin "baserom.nds", 0x1132ABC, 0x48
.incbin "baserom.nds", 0x1132B04, 0x1930
.incbin "baserom.nds", 0x1134434, 0x1930
.incbin "baserom.nds", 0x1135D64, 0x1930
.incbin "baserom.nds", 0x1137694, 0x1930
.incbin "baserom.nds", 0x1138FC4, 0x48
.incbin "baserom.nds", 0x113900C, 0x48
.incbin "baserom.nds", 0x1139054, 0x1930
.incbin "baserom.nds", 0x113A984, 0x1930
.incbin "baserom.nds", 0x113C2B4, 0x1930
.incbin "baserom.nds", 0x113DBE4, 0x1930
.incbin "baserom.nds", 0x113F514, 0x48
.incbin "baserom.nds", 0x113F55C, 0x48
.incbin "baserom.nds", 0x113F5A4, 0x1930
.incbin "baserom.nds", 0x1140ED4, 0x1930
.incbin "baserom.nds", 0x1142804, 0x1930
.incbin "baserom.nds", 0x1144134, 0x1930
.incbin "baserom.nds", 0x1145A64, 0x48
.incbin "baserom.nds", 0x1145AAC, 0x48
.incbin "baserom.nds", 0x1145AF4, 0x1930
.incbin "baserom.nds", 0x1147424, 0x1930
.incbin "baserom.nds", 0x1148D54, 0x1930
.incbin "baserom.nds", 0x114A684, 0x1930
.incbin "baserom.nds", 0x114BFB4, 0x48
.incbin "baserom.nds", 0x114BFFC, 0x48
.incbin "baserom.nds", 0x114C044, 0x1930
.incbin "baserom.nds", 0x114D974, 0x1930
.incbin "baserom.nds", 0x114F2A4, 0x1930
.incbin "baserom.nds", 0x1150BD4, 0x1930
.incbin "baserom.nds", 0x1152504, 0x48
.incbin "baserom.nds", 0x115254C, 0x48
.incbin "baserom.nds", 0x1152594, 0x1930
.incbin "baserom.nds", 0x1153EC4, 0x1930
.incbin "baserom.nds", 0x11557F4, 0x1930
.incbin "baserom.nds", 0x1157124, 0x1930
.incbin "baserom.nds", 0x1158A54, 0x48
.incbin "baserom.nds", 0x1158A9C, 0x48
.incbin "baserom.nds", 0x1158AE4, 0x1930
.incbin "baserom.nds", 0x115A414, 0x1930
.incbin "baserom.nds", 0x115BD44, 0x1930
.incbin "baserom.nds", 0x115D674, 0x1930
.incbin "baserom.nds", 0x115EFA4, 0x48
.incbin "baserom.nds", 0x115EFEC, 0x48
.incbin "baserom.nds", 0x115F034, 0x1930
.incbin "baserom.nds", 0x1160964, 0x1930
.incbin "baserom.nds", 0x1162294, 0x1930
.incbin "baserom.nds", 0x1163BC4, 0x1930
.incbin "baserom.nds", 0x11654F4, 0x48
.incbin "baserom.nds", 0x116553C, 0x48
.incbin "baserom.nds", 0x1165584, 0x1930
.incbin "baserom.nds", 0x1166EB4, 0x1930
.incbin "baserom.nds", 0x11687E4, 0x1930
.incbin "baserom.nds", 0x116A114, 0x1930
.incbin "baserom.nds", 0x116BA44, 0x48
.incbin "baserom.nds", 0x116BA8C, 0x48
.incbin "baserom.nds", 0x116BAD4, 0x1930
.incbin "baserom.nds", 0x116D404, 0x1930
.incbin "baserom.nds", 0x116ED34, 0x1930
.incbin "baserom.nds", 0x1170664, 0x1930
.incbin "baserom.nds", 0x1171F94, 0x48
.incbin "baserom.nds", 0x1171FDC, 0x48
.incbin "baserom.nds", 0x1172024, 0x1930
.incbin "baserom.nds", 0x1173954, 0x1930
.incbin "baserom.nds", 0x1175284, 0x1930
.incbin "baserom.nds", 0x1176BB4, 0x1930
.incbin "baserom.nds", 0x11784E4, 0x48
.incbin "baserom.nds", 0x117852C, 0x48
.incbin "baserom.nds", 0x1178574, 0x1930
.incbin "baserom.nds", 0x1179EA4, 0x1930
.incbin "baserom.nds", 0x117B7D4, 0x1930
.incbin "baserom.nds", 0x117D104, 0x1930
.incbin "baserom.nds", 0x117EA34, 0x48
.incbin "baserom.nds", 0x117EA7C, 0x48
.incbin "baserom.nds", 0x117EAC4, 0x1930
.incbin "baserom.nds", 0x11803F4, 0x1930
.incbin "baserom.nds", 0x1181D24, 0x1930
.incbin "baserom.nds", 0x1183654, 0x1930
.incbin "baserom.nds", 0x1184F84, 0x48
.incbin "baserom.nds", 0x1184FCC, 0x48
.incbin "baserom.nds", 0x1185014, 0x1930
.incbin "baserom.nds", 0x1186944, 0x1930
.incbin "baserom.nds", 0x1188274, 0x1930
.incbin "baserom.nds", 0x1189BA4, 0x1930
.incbin "baserom.nds", 0x118B4D4, 0x48
.incbin "baserom.nds", 0x118B51C, 0x48
.incbin "baserom.nds", 0x118B564, 0x1930
.incbin "baserom.nds", 0x118CE94, 0x1930
.incbin "baserom.nds", 0x118E7C4, 0x1930
.incbin "baserom.nds", 0x11900F4, 0x1930
.incbin "baserom.nds", 0x1191A24, 0x48
.incbin "baserom.nds", 0x1191A6C, 0x48
.incbin "baserom.nds", 0x1191AB4, 0x1930
.incbin "baserom.nds", 0x11933E4, 0x1930
.incbin "baserom.nds", 0x1194D14, 0x1930
.incbin "baserom.nds", 0x1196644, 0x1930
.incbin "baserom.nds", 0x1197F74, 0x48
.incbin "baserom.nds", 0x1197FBC, 0x48
.incbin "baserom.nds", 0x1198004, 0x1930
.incbin "baserom.nds", 0x1199934, 0x1930
.incbin "baserom.nds", 0x119B264, 0x1930
.incbin "baserom.nds", 0x119CB94, 0x1930
.incbin "baserom.nds", 0x119E4C4, 0x48
.incbin "baserom.nds", 0x119E50C, 0x48
.incbin "baserom.nds", 0x119E554, 0x1930
.incbin "baserom.nds", 0x119FE84, 0x1930
.incbin "baserom.nds", 0x11A17B4, 0x1930
.incbin "baserom.nds", 0x11A30E4, 0x1930
.incbin "baserom.nds", 0x11A4A14, 0x48
.incbin "baserom.nds", 0x11A4A5C, 0x48
.incbin "baserom.nds", 0x11A4AA4, 0x1930
.incbin "baserom.nds", 0x11A63D4, 0x1930
.incbin "baserom.nds", 0x11A7D04, 0x1930
.incbin "baserom.nds", 0x11A9634, 0x1930
.incbin "baserom.nds", 0x11AAF64, 0x48
.incbin "baserom.nds", 0x11AAFAC, 0x48
.incbin "baserom.nds", 0x11AAFF4, 0x1930
.incbin "baserom.nds", 0x11AC924, 0x1930
.incbin "baserom.nds", 0x11AE254, 0x1930
.incbin "baserom.nds", 0x11AFB84, 0x1930
.incbin "baserom.nds", 0x11B14B4, 0x48
.incbin "baserom.nds", 0x11B14FC, 0x48
.incbin "baserom.nds", 0x11B1544, 0x1930
.incbin "baserom.nds", 0x11B2E74, 0x1930
.incbin "baserom.nds", 0x11B47A4, 0x1930
.incbin "baserom.nds", 0x11B60D4, 0x1930
.incbin "baserom.nds", 0x11B7A04, 0x48
.incbin "baserom.nds", 0x11B7A4C, 0x48
.incbin "baserom.nds", 0x11B7A94, 0x1930
.incbin "baserom.nds", 0x11B93C4, 0x1930
.incbin "baserom.nds", 0x11BACF4, 0x1930
.incbin "baserom.nds", 0x11BC624, 0x1930
.incbin "baserom.nds", 0x11BDF54, 0x48
.incbin "baserom.nds", 0x11BDF9C, 0x48
.incbin "baserom.nds", 0x11BDFE4, 0x1930
.incbin "baserom.nds", 0x11BF914, 0x1930
.incbin "baserom.nds", 0x11C1244, 0x1930
.incbin "baserom.nds", 0x11C2B74, 0x1930
.incbin "baserom.nds", 0x11C44A4, 0x48
.incbin "baserom.nds", 0x11C44EC, 0x48
.incbin "baserom.nds", 0x11C4534, 0x1930
.incbin "baserom.nds", 0x11C5E64, 0x1930
.incbin "baserom.nds", 0x11C7794, 0x1930
.incbin "baserom.nds", 0x11C90C4, 0x1930
.incbin "baserom.nds", 0x11CA9F4, 0x48
.incbin "baserom.nds", 0x11CAA3C, 0x48
.incbin "baserom.nds", 0x11CAA84, 0x1930
.incbin "baserom.nds", 0x11CC3B4, 0x1930
.incbin "baserom.nds", 0x11CDCE4, 0x1930
.incbin "baserom.nds", 0x11CF614, 0x1930
.incbin "baserom.nds", 0x11D0F44, 0x48
.incbin "baserom.nds", 0x11D0F8C, 0x48
.incbin "baserom.nds", 0x11D0FD4, 0x1930
.incbin "baserom.nds", 0x11D2904, 0x1930
.incbin "baserom.nds", 0x11D4234, 0x1930
.incbin "baserom.nds", 0x11D5B64, 0x1930
.incbin "baserom.nds", 0x11D7494, 0x48
.incbin "baserom.nds", 0x11D74DC, 0x48
.incbin "baserom.nds", 0x11D7524, 0x1930
.incbin "baserom.nds", 0x11D8E54, 0x1930
.incbin "baserom.nds", 0x11DA784, 0x1930
.incbin "baserom.nds", 0x11DC0B4, 0x1930
.incbin "baserom.nds", 0x11DD9E4, 0x48
.incbin "baserom.nds", 0x11DDA2C, 0x48
.incbin "baserom.nds", 0x11DDA74, 0x1930
.incbin "baserom.nds", 0x11DF3A4, 0x1930
.incbin "baserom.nds", 0x11E0CD4, 0x1930
.incbin "baserom.nds", 0x11E2604, 0x1930
.incbin "baserom.nds", 0x11E3F34, 0x48
.incbin "baserom.nds", 0x11E3F7C, 0x48
.incbin "baserom.nds", 0x11E3FC4, 0x1930
.incbin "baserom.nds", 0x11E58F4, 0x1930
.incbin "baserom.nds", 0x11E7224, 0x1930
.incbin "baserom.nds", 0x11E8B54, 0x1930
.incbin "baserom.nds", 0x11EA484, 0x48
.incbin "baserom.nds", 0x11EA4CC, 0x48
.incbin "baserom.nds", 0x11EA514, 0x1930
.incbin "baserom.nds", 0x11EBE44, 0x1930
.incbin "baserom.nds", 0x11ED774, 0x1930
.incbin "baserom.nds", 0x11EF0A4, 0x1930
.incbin "baserom.nds", 0x11F09D4, 0x48
.incbin "baserom.nds", 0x11F0A1C, 0x48
.incbin "baserom.nds", 0x11F0A64, 0x1930
.incbin "baserom.nds", 0x11F2394, 0x1930
.incbin "baserom.nds", 0x11F3CC4, 0x1930
.incbin "baserom.nds", 0x11F55F4, 0x1930
.incbin "baserom.nds", 0x11F6F24, 0x48
.incbin "baserom.nds", 0x11F6F6C, 0x48
.incbin "baserom.nds", 0x11F6FB4, 0x1930
.incbin "baserom.nds", 0x11F88E4, 0x1930
.incbin "baserom.nds", 0x11FA214, 0x1930
.incbin "baserom.nds", 0x11FBB44, 0x1930
.incbin "baserom.nds", 0x11FD474, 0x48
.incbin "baserom.nds", 0x11FD4BC, 0x48
.incbin "baserom.nds", 0x11FD504, 0x1930
.incbin "baserom.nds", 0x11FEE34, 0x1930
.incbin "baserom.nds", 0x1200764, 0x1930
.incbin "baserom.nds", 0x1202094, 0x1930
.incbin "baserom.nds", 0x12039C4, 0x48
.incbin "baserom.nds", 0x1203A0C, 0x48
.incbin "baserom.nds", 0x1203A54, 0x1930
.incbin "baserom.nds", 0x1205384, 0x1930
.incbin "baserom.nds", 0x1206CB4, 0x1930
.incbin "baserom.nds", 0x12085E4, 0x1930
.incbin "baserom.nds", 0x1209F14, 0x48
.incbin "baserom.nds", 0x1209F5C, 0x48
.incbin "baserom.nds", 0x1209FA4, 0x1930
.incbin "baserom.nds", 0x120B8D4, 0x1930
.incbin "baserom.nds", 0x120D204, 0x1930
.incbin "baserom.nds", 0x120EB34, 0x1930
.incbin "baserom.nds", 0x1210464, 0x48
.incbin "baserom.nds", 0x12104AC, 0x48
.incbin "baserom.nds", 0x12104F4, 0x1930
.incbin "baserom.nds", 0x1211E24, 0x1930
.incbin "baserom.nds", 0x1213754, 0x1930
.incbin "baserom.nds", 0x1215084, 0x1930
.incbin "baserom.nds", 0x12169B4, 0x48
.incbin "baserom.nds", 0x12169FC, 0x48
.incbin "baserom.nds", 0x1216A44, 0x1930
.incbin "baserom.nds", 0x1218374, 0x1930
.incbin "baserom.nds", 0x1219CA4, 0x1930
.incbin "baserom.nds", 0x121B5D4, 0x1930
.incbin "baserom.nds", 0x121CF04, 0x48
.incbin "baserom.nds", 0x121CF4C, 0x48
.incbin "baserom.nds", 0x121CF94, 0x1930
.incbin "baserom.nds", 0x121E8C4, 0x1930
.incbin "baserom.nds", 0x12201F4, 0x1930
.incbin "baserom.nds", 0x1221B24, 0x1930
.incbin "baserom.nds", 0x1223454, 0x48
.incbin "baserom.nds", 0x122349C, 0x48
.incbin "baserom.nds", 0x12234E4, 0x0
.incbin "baserom.nds", 0x12234E4, 0x1930
.incbin "baserom.nds", 0x1224E14, 0x0
.incbin "baserom.nds", 0x1224E14, 0x1930
.incbin "baserom.nds", 0x1226744, 0x48
.incbin "baserom.nds", 0x122678C, 0x48
.incbin "baserom.nds", 0x12267D4, 0x0
.incbin "baserom.nds", 0x12267D4, 0x1930
.incbin "baserom.nds", 0x1228104, 0x0
.incbin "baserom.nds", 0x1228104, 0x1930
.incbin "baserom.nds", 0x1229A34, 0x48
.incbin "baserom.nds", 0x1229A7C, 0x48
.incbin "baserom.nds", 0x1229AC4, 0x1930
.incbin "baserom.nds", 0x122B3F4, 0x1930
.incbin "baserom.nds", 0x122CD24, 0x1930
.incbin "baserom.nds", 0x122E654, 0x1930
.incbin "baserom.nds", 0x122FF84, 0x48
.incbin "baserom.nds", 0x122FFCC, 0x48
.incbin "baserom.nds", 0x1230014, 0x1930
.incbin "baserom.nds", 0x1231944, 0x1930
.incbin "baserom.nds", 0x1233274, 0x1930
.incbin "baserom.nds", 0x1234BA4, 0x1930
.incbin "baserom.nds", 0x12364D4, 0x48
.incbin "baserom.nds", 0x123651C, 0x48
.incbin "baserom.nds", 0x1236564, 0x1930
.incbin "baserom.nds", 0x1237E94, 0x1930
.incbin "baserom.nds", 0x12397C4, 0x1930
.incbin "baserom.nds", 0x123B0F4, 0x1930
.incbin "baserom.nds", 0x123CA24, 0x48
.incbin "baserom.nds", 0x123CA6C, 0x48
.incbin "baserom.nds", 0x123CAB4, 0x1930
.incbin "baserom.nds", 0x123E3E4, 0x1930
.incbin "baserom.nds", 0x123FD14, 0x1930
.incbin "baserom.nds", 0x1241644, 0x1930
.incbin "baserom.nds", 0x1242F74, 0x48
.incbin "baserom.nds", 0x1242FBC, 0x48
.incbin "baserom.nds", 0x1243004, 0x1930
.incbin "baserom.nds", 0x1244934, 0x1930
.incbin "baserom.nds", 0x1246264, 0x1930
.incbin "baserom.nds", 0x1247B94, 0x1930
.incbin "baserom.nds", 0x12494C4, 0x48
.incbin "baserom.nds", 0x124950C, 0x48
.incbin "baserom.nds", 0x1249554, 0x1930
.incbin "baserom.nds", 0x124AE84, 0x1930
.incbin "baserom.nds", 0x124C7B4, 0x1930
.incbin "baserom.nds", 0x124E0E4, 0x1930
.incbin "baserom.nds", 0x124FA14, 0x48
.incbin "baserom.nds", 0x124FA5C, 0x48
.incbin "baserom.nds", 0x124FAA4, 0x1930
.incbin "baserom.nds", 0x12513D4, 0x1930
.incbin "baserom.nds", 0x1252D04, 0x1930
.incbin "baserom.nds", 0x1254634, 0x1930
.incbin "baserom.nds", 0x1255F64, 0x48
.incbin "baserom.nds", 0x1255FAC, 0x48
.incbin "baserom.nds", 0x1255FF4, 0x1930
.incbin "baserom.nds", 0x1257924, 0x1930
.incbin "baserom.nds", 0x1259254, 0x1930
.incbin "baserom.nds", 0x125AB84, 0x1930
.incbin "baserom.nds", 0x125C4B4, 0x48
.incbin "baserom.nds", 0x125C4FC, 0x48
.incbin "baserom.nds", 0x125C544, 0x1930
.incbin "baserom.nds", 0x125DE74, 0x1930
.incbin "baserom.nds", 0x125F7A4, 0x1930
.incbin "baserom.nds", 0x12610D4, 0x1930
.incbin "baserom.nds", 0x1262A04, 0x48
.incbin "baserom.nds", 0x1262A4C, 0x48
.incbin "baserom.nds", 0x1262A94, 0x1930
.incbin "baserom.nds", 0x12643C4, 0x1930
.incbin "baserom.nds", 0x1265CF4, 0x1930
.incbin "baserom.nds", 0x1267624, 0x1930
.incbin "baserom.nds", 0x1268F54, 0x48
.incbin "baserom.nds", 0x1268F9C, 0x48
.incbin "baserom.nds", 0x1268FE4, 0x1930
.incbin "baserom.nds", 0x126A914, 0x1930
.incbin "baserom.nds", 0x126C244, 0x1930
.incbin "baserom.nds", 0x126DB74, 0x1930
.incbin "baserom.nds", 0x126F4A4, 0x48
.incbin "baserom.nds", 0x126F4EC, 0x48
.incbin "baserom.nds", 0x126F534, 0x1930
.incbin "baserom.nds", 0x1270E64, 0x1930
.incbin "baserom.nds", 0x1272794, 0x1930
.incbin "baserom.nds", 0x12740C4, 0x1930
.incbin "baserom.nds", 0x12759F4, 0x48
.incbin "baserom.nds", 0x1275A3C, 0x48
.incbin "baserom.nds", 0x1275A84, 0x1930
.incbin "baserom.nds", 0x12773B4, 0x1930
.incbin "baserom.nds", 0x1278CE4, 0x1930
.incbin "baserom.nds", 0x127A614, 0x1930
.incbin "baserom.nds", 0x127BF44, 0x48
.incbin "baserom.nds", 0x127BF8C, 0x48
.incbin "baserom.nds", 0x127BFD4, 0x1930
.incbin "baserom.nds", 0x127D904, 0x1930
.incbin "baserom.nds", 0x127F234, 0x1930
.incbin "baserom.nds", 0x1280B64, 0x1930
.incbin "baserom.nds", 0x1282494, 0x48
.incbin "baserom.nds", 0x12824DC, 0x48
.incbin "baserom.nds", 0x1282524, 0x1930
.incbin "baserom.nds", 0x1283E54, 0x1930
.incbin "baserom.nds", 0x1285784, 0x1930
.incbin "baserom.nds", 0x12870B4, 0x1930
.incbin "baserom.nds", 0x12889E4, 0x48
.incbin "baserom.nds", 0x1288A2C, 0x48
.incbin "baserom.nds", 0x1288A74, 0x1930
.incbin "baserom.nds", 0x128A3A4, 0x1930
.incbin "baserom.nds", 0x128BCD4, 0x1930
.incbin "baserom.nds", 0x128D604, 0x1930
.incbin "baserom.nds", 0x128EF34, 0x48
.incbin "baserom.nds", 0x128EF7C, 0x48
.incbin "baserom.nds", 0x128EFC4, 0x1930
.incbin "baserom.nds", 0x12908F4, 0x1930
.incbin "baserom.nds", 0x1292224, 0x1930
.incbin "baserom.nds", 0x1293B54, 0x1930
.incbin "baserom.nds", 0x1295484, 0x48
.incbin "baserom.nds", 0x12954CC, 0x48
.incbin "baserom.nds", 0x1295514, 0x0
.incbin "baserom.nds", 0x1295514, 0x1930
.incbin "baserom.nds", 0x1296E44, 0x0
.incbin "baserom.nds", 0x1296E44, 0x1930
.incbin "baserom.nds", 0x1298774, 0x48
.incbin "baserom.nds", 0x12987BC, 0x48
.incbin "baserom.nds", 0x1298804, 0x0
.incbin "baserom.nds", 0x1298804, 0x1930
.incbin "baserom.nds", 0x129A134, 0x0
.incbin "baserom.nds", 0x129A134, 0x1930
.incbin "baserom.nds", 0x129BA64, 0x48
.incbin "baserom.nds", 0x129BAAC, 0x48
.incbin "baserom.nds", 0x129BAF4, 0x1930
.incbin "baserom.nds", 0x129D424, 0x1930
.incbin "baserom.nds", 0x129ED54, 0x1930
.incbin "baserom.nds", 0x12A0684, 0x1930
.incbin "baserom.nds", 0x12A1FB4, 0x48
.incbin "baserom.nds", 0x12A1FFC, 0x48
.incbin "baserom.nds", 0x12A2044, 0x1930
.incbin "baserom.nds", 0x12A3974, 0x1930
.incbin "baserom.nds", 0x12A52A4, 0x1930
.incbin "baserom.nds", 0x12A6BD4, 0x1930
.incbin "baserom.nds", 0x12A8504, 0x48
.incbin "baserom.nds", 0x12A854C, 0x48
.incbin "baserom.nds", 0x12A8594, 0x1930
.incbin "baserom.nds", 0x12A9EC4, 0x1930
.incbin "baserom.nds", 0x12AB7F4, 0x1930
.incbin "baserom.nds", 0x12AD124, 0x1930
.incbin "baserom.nds", 0x12AEA54, 0x48
.incbin "baserom.nds", 0x12AEA9C, 0x48
.incbin "baserom.nds", 0x12AEAE4, 0x1930
.incbin "baserom.nds", 0x12B0414, 0x1930
.incbin "baserom.nds", 0x12B1D44, 0x1930
.incbin "baserom.nds", 0x12B3674, 0x1930
.incbin "baserom.nds", 0x12B4FA4, 0x48
.incbin "baserom.nds", 0x12B4FEC, 0x48
.incbin "baserom.nds", 0x12B5034, 0x0
.incbin "baserom.nds", 0x12B5034, 0x1930
.incbin "baserom.nds", 0x12B6964, 0x0
.incbin "baserom.nds", 0x12B6964, 0x1930
.incbin "baserom.nds", 0x12B8294, 0x48
.incbin "baserom.nds", 0x12B82DC, 0x48
.incbin "baserom.nds", 0x12B8324, 0x0
.incbin "baserom.nds", 0x12B8324, 0x1930
.incbin "baserom.nds", 0x12B9C54, 0x0
.incbin "baserom.nds", 0x12B9C54, 0x1930
.incbin "baserom.nds", 0x12BB584, 0x48
.incbin "baserom.nds", 0x12BB5CC, 0x48
.incbin "baserom.nds", 0x12BB614, 0x1930
.incbin "baserom.nds", 0x12BCF44, 0x1930
.incbin "baserom.nds", 0x12BE874, 0x1930
.incbin "baserom.nds", 0x12C01A4, 0x1930
.incbin "baserom.nds", 0x12C1AD4, 0x48
.incbin "baserom.nds", 0x12C1B1C, 0x48
.incbin "baserom.nds", 0x12C1B64, 0x1930
.incbin "baserom.nds", 0x12C3494, 0x1930
.incbin "baserom.nds", 0x12C4DC4, 0x1930
.incbin "baserom.nds", 0x12C66F4, 0x1930
.incbin "baserom.nds", 0x12C8024, 0x48
.incbin "baserom.nds", 0x12C806C, 0x48
.incbin "baserom.nds", 0x12C80B4, 0x1930
.incbin "baserom.nds", 0x12C99E4, 0x1930
.incbin "baserom.nds", 0x12CB314, 0x1930
.incbin "baserom.nds", 0x12CCC44, 0x1930
.incbin "baserom.nds", 0x12CE574, 0x48
.incbin "baserom.nds", 0x12CE5BC, 0x48
.incbin "baserom.nds", 0x12CE604, 0x1930
.incbin "baserom.nds", 0x12CFF34, 0x1930
.incbin "baserom.nds", 0x12D1864, 0x1930
.incbin "baserom.nds", 0x12D3194, 0x1930
.incbin "baserom.nds", 0x12D4AC4, 0x48
.incbin "baserom.nds", 0x12D4B0C, 0x48
.incbin "baserom.nds", 0x12D4B54, 0x1930
.incbin "baserom.nds", 0x12D6484, 0x1930
.incbin "baserom.nds", 0x12D7DB4, 0x1930
.incbin "baserom.nds", 0x12D96E4, 0x1930
.incbin "baserom.nds", 0x12DB014, 0x48
.incbin "baserom.nds", 0x12DB05C, 0x48
.incbin "baserom.nds", 0x12DB0A4, 0x1930
.incbin "baserom.nds", 0x12DC9D4, 0x0
.incbin "baserom.nds", 0x12DC9D4, 0x1930
.incbin "baserom.nds", 0x12DE304, 0x0
.incbin "baserom.nds", 0x12DE304, 0x48
.incbin "baserom.nds", 0x12DE34C, 0x48
.incbin "baserom.nds", 0x12DE394, 0x1930
.incbin "baserom.nds", 0x12DFCC4, 0x1930
.incbin "baserom.nds", 0x12E15F4, 0x1930
.incbin "baserom.nds", 0x12E2F24, 0x1930
.incbin "baserom.nds", 0x12E4854, 0x48
.incbin "baserom.nds", 0x12E489C, 0x48
.incbin "baserom.nds", 0x12E48E4, 0x1930
.incbin "baserom.nds", 0x12E6214, 0x0
.incbin "baserom.nds", 0x12E6214, 0x1930
.incbin "baserom.nds", 0x12E7B44, 0x0
.incbin "baserom.nds", 0x12E7B44, 0x48
.incbin "baserom.nds", 0x12E7B8C, 0x48
.incbin "baserom.nds", 0x12E7BD4, 0x1930
.incbin "baserom.nds", 0x12E9504, 0x1930
.incbin "baserom.nds", 0x12EAE34, 0x1930
.incbin "baserom.nds", 0x12EC764, 0x1930
.incbin "baserom.nds", 0x12EE094, 0x48
.incbin "baserom.nds", 0x12EE0DC, 0x48
.incbin "baserom.nds", 0x12EE124, 0x1930
.incbin "baserom.nds", 0x12EFA54, 0x1930
.incbin "baserom.nds", 0x12F1384, 0x1930
.incbin "baserom.nds", 0x12F2CB4, 0x1930
.incbin "baserom.nds", 0x12F45E4, 0x48
.incbin "baserom.nds", 0x12F462C, 0x48
.incbin "baserom.nds", 0x12F4674, 0x1930
.incbin "baserom.nds", 0x12F5FA4, 0x1930
.incbin "baserom.nds", 0x12F78D4, 0x1930
.incbin "baserom.nds", 0x12F9204, 0x1930
.incbin "baserom.nds", 0x12FAB34, 0x48
.incbin "baserom.nds", 0x12FAB7C, 0x48
.incbin "baserom.nds", 0x12FABC4, 0x1930
.incbin "baserom.nds", 0x12FC4F4, 0x1930
.incbin "baserom.nds", 0x12FDE24, 0x1930
.incbin "baserom.nds", 0x12FF754, 0x1930
.incbin "baserom.nds", 0x1301084, 0x48
.incbin "baserom.nds", 0x13010CC, 0x48
.incbin "baserom.nds", 0x1301114, 0x0
.incbin "baserom.nds", 0x1301114, 0x1930
.incbin "baserom.nds", 0x1302A44, 0x0
.incbin "baserom.nds", 0x1302A44, 0x1930
.incbin "baserom.nds", 0x1304374, 0x48
.incbin "baserom.nds", 0x13043BC, 0x48
.incbin "baserom.nds", 0x1304404, 0x0
.incbin "baserom.nds", 0x1304404, 0x1930
.incbin "baserom.nds", 0x1305D34, 0x0
.incbin "baserom.nds", 0x1305D34, 0x1930
.incbin "baserom.nds", 0x1307664, 0x48
.incbin "baserom.nds", 0x13076AC, 0x48
.incbin "baserom.nds", 0x13076F4, 0x1930
.incbin "baserom.nds", 0x1309024, 0x1930
.incbin "baserom.nds", 0x130A954, 0x1930
.incbin "baserom.nds", 0x130C284, 0x1930
.incbin "baserom.nds", 0x130DBB4, 0x48
.incbin "baserom.nds", 0x130DBFC, 0x48
.incbin "baserom.nds", 0x130DC44, 0x1930
.incbin "baserom.nds", 0x130F574, 0x1930
.incbin "baserom.nds", 0x1310EA4, 0x1930
.incbin "baserom.nds", 0x13127D4, 0x1930
.incbin "baserom.nds", 0x1314104, 0x48
.incbin "baserom.nds", 0x131414C, 0x48
.incbin "baserom.nds", 0x1314194, 0x1930
.incbin "baserom.nds", 0x1315AC4, 0x0
.incbin "baserom.nds", 0x1315AC4, 0x1930
.incbin "baserom.nds", 0x13173F4, 0x0
.incbin "baserom.nds", 0x13173F4, 0x48
.incbin "baserom.nds", 0x131743C, 0x48
.incbin "baserom.nds", 0x1317484, 0x1930
.incbin "baserom.nds", 0x1318DB4, 0x1930
.incbin "baserom.nds", 0x131A6E4, 0x1930
.incbin "baserom.nds", 0x131C014, 0x1930
.incbin "baserom.nds", 0x131D944, 0x48
.incbin "baserom.nds", 0x131D98C, 0x48
.incbin "baserom.nds", 0x131D9D4, 0x1930
.incbin "baserom.nds", 0x131F304, 0x1930
.incbin "baserom.nds", 0x1320C34, 0x1930
.incbin "baserom.nds", 0x1322564, 0x1930
.incbin "baserom.nds", 0x1323E94, 0x48
.incbin "baserom.nds", 0x1323EDC, 0x48
.incbin "baserom.nds", 0x1323F24, 0x1930
.incbin "baserom.nds", 0x1325854, 0x1930
.incbin "baserom.nds", 0x1327184, 0x1930
.incbin "baserom.nds", 0x1328AB4, 0x1930
.incbin "baserom.nds", 0x132A3E4, 0x48
.incbin "baserom.nds", 0x132A42C, 0x48
.incbin "baserom.nds", 0x132A474, 0x0
.incbin "baserom.nds", 0x132A474, 0x1930
.incbin "baserom.nds", 0x132BDA4, 0x0
.incbin "baserom.nds", 0x132BDA4, 0x1930
.incbin "baserom.nds", 0x132D6D4, 0x48
.incbin "baserom.nds", 0x132D71C, 0x48
.incbin "baserom.nds", 0x132D764, 0x1930
.incbin "baserom.nds", 0x132F094, 0x1930
.incbin "baserom.nds", 0x13309C4, 0x1930
.incbin "baserom.nds", 0x13322F4, 0x1930
.incbin "baserom.nds", 0x1333C24, 0x48
.incbin "baserom.nds", 0x1333C6C, 0x48
.incbin "baserom.nds", 0x1333CB4, 0x1930
.incbin "baserom.nds", 0x13355E4, 0x1930
.incbin "baserom.nds", 0x1336F14, 0x1930
.incbin "baserom.nds", 0x1338844, 0x1930
.incbin "baserom.nds", 0x133A174, 0x48
.incbin "baserom.nds", 0x133A1BC, 0x48
.incbin "baserom.nds", 0x133A204, 0x1930
.incbin "baserom.nds", 0x133BB34, 0x1930
.incbin "baserom.nds", 0x133D464, 0x1930
.incbin "baserom.nds", 0x133ED94, 0x1930
.incbin "baserom.nds", 0x13406C4, 0x48
.incbin "baserom.nds", 0x134070C, 0x48
.incbin "baserom.nds", 0x1340754, 0x0
.incbin "baserom.nds", 0x1340754, 0x1930
.incbin "baserom.nds", 0x1342084, 0x0
.incbin "baserom.nds", 0x1342084, 0x1930
.incbin "baserom.nds", 0x13439B4, 0x48
.incbin "baserom.nds", 0x13439FC, 0x48
.incbin "baserom.nds", 0x1343A44, 0x1930
.incbin "baserom.nds", 0x1345374, 0x1930
.incbin "baserom.nds", 0x1346CA4, 0x1930
.incbin "baserom.nds", 0x13485D4, 0x1930
.incbin "baserom.nds", 0x1349F04, 0x48
.incbin "baserom.nds", 0x1349F4C, 0x48
.incbin "baserom.nds", 0x1349F94, 0x1930
.incbin "baserom.nds", 0x134B8C4, 0x1930
.incbin "baserom.nds", 0x134D1F4, 0x1930
.incbin "baserom.nds", 0x134EB24, 0x1930
.incbin "baserom.nds", 0x1350454, 0x48
.incbin "baserom.nds", 0x135049C, 0x48
.incbin "baserom.nds", 0x13504E4, 0x1930
.incbin "baserom.nds", 0x1351E14, 0x1930
.incbin "baserom.nds", 0x1353744, 0x1930
.incbin "baserom.nds", 0x1355074, 0x1930
.incbin "baserom.nds", 0x13569A4, 0x48
.incbin "baserom.nds", 0x13569EC, 0x48
.incbin "baserom.nds", 0x1356A34, 0x1930
.incbin "baserom.nds", 0x1358364, 0x1930
.incbin "baserom.nds", 0x1359C94, 0x1930
.incbin "baserom.nds", 0x135B5C4, 0x1930
.incbin "baserom.nds", 0x135CEF4, 0x48
.incbin "baserom.nds", 0x135CF3C, 0x48
.incbin "baserom.nds", 0x135CF84, 0x0
.incbin "baserom.nds", 0x135CF84, 0x1930
.incbin "baserom.nds", 0x135E8B4, 0x0
.incbin "baserom.nds", 0x135E8B4, 0x1930
.incbin "baserom.nds", 0x13601E4, 0x48
.incbin "baserom.nds", 0x136022C, 0x48
.incbin "baserom.nds", 0x1360274, 0x1930
.incbin "baserom.nds", 0x1361BA4, 0x1930
.incbin "baserom.nds", 0x13634D4, 0x1930
.incbin "baserom.nds", 0x1364E04, 0x1930
.incbin "baserom.nds", 0x1366734, 0x48
.incbin "baserom.nds", 0x136677C, 0x48
.incbin "baserom.nds", 0x13667C4, 0x1930
.incbin "baserom.nds", 0x13680F4, 0x1930
.incbin "baserom.nds", 0x1369A24, 0x1930
.incbin "baserom.nds", 0x136B354, 0x1930
.incbin "baserom.nds", 0x136CC84, 0x48
.incbin "baserom.nds", 0x136CCCC, 0x48
.incbin "baserom.nds", 0x136CD14, 0x1930
.incbin "baserom.nds", 0x136E644, 0x1930
.incbin "baserom.nds", 0x136FF74, 0x1930
.incbin "baserom.nds", 0x13718A4, 0x1930
.incbin "baserom.nds", 0x13731D4, 0x48
.incbin "baserom.nds", 0x137321C, 0x48
.incbin "baserom.nds", 0x1373264, 0x1930
.incbin "baserom.nds", 0x1374B94, 0x1930
.incbin "baserom.nds", 0x13764C4, 0x1930
.incbin "baserom.nds", 0x1377DF4, 0x1930
.incbin "baserom.nds", 0x1379724, 0x48
.incbin "baserom.nds", 0x137976C, 0x48
.incbin "baserom.nds", 0x13797B4, 0x1930
.incbin "baserom.nds", 0x137B0E4, 0x1930
.incbin "baserom.nds", 0x137CA14, 0x1930
.incbin "baserom.nds", 0x137E344, 0x1930
.incbin "baserom.nds", 0x137FC74, 0x48
.incbin "baserom.nds", 0x137FCBC, 0x48
.incbin "baserom.nds", 0x137FD04, 0x1930
.incbin "baserom.nds", 0x1381634, 0x1930
.incbin "baserom.nds", 0x1382F64, 0x1930
.incbin "baserom.nds", 0x1384894, 0x1930
.incbin "baserom.nds", 0x13861C4, 0x48
.incbin "baserom.nds", 0x138620C, 0x48
.incbin "baserom.nds", 0x1386254, 0x0
.incbin "baserom.nds", 0x1386254, 0x1930
.incbin "baserom.nds", 0x1387B84, 0x0
.incbin "baserom.nds", 0x1387B84, 0x1930
.incbin "baserom.nds", 0x13894B4, 0x48
.incbin "baserom.nds", 0x13894FC, 0x48
.incbin "baserom.nds", 0x1389544, 0x0
.incbin "baserom.nds", 0x1389544, 0x1930
.incbin "baserom.nds", 0x138AE74, 0x0
.incbin "baserom.nds", 0x138AE74, 0x1930
.incbin "baserom.nds", 0x138C7A4, 0x48
.incbin "baserom.nds", 0x138C7EC, 0x48
.incbin "baserom.nds", 0x138C834, 0x0
.incbin "baserom.nds", 0x138C834, 0x1930
.incbin "baserom.nds", 0x138E164, 0x0
.incbin "baserom.nds", 0x138E164, 0x1930
.incbin "baserom.nds", 0x138FA94, 0x48
.incbin "baserom.nds", 0x138FADC, 0x48
.incbin "baserom.nds", 0x138FB24, 0x1930
.incbin "baserom.nds", 0x1391454, 0x1930
.incbin "baserom.nds", 0x1392D84, 0x1930
.incbin "baserom.nds", 0x13946B4, 0x1930
.incbin "baserom.nds", 0x1395FE4, 0x48
.incbin "baserom.nds", 0x139602C, 0x48
.incbin "baserom.nds", 0x1396074, 0x1930
.incbin "baserom.nds", 0x13979A4, 0x1930
.incbin "baserom.nds", 0x13992D4, 0x1930
.incbin "baserom.nds", 0x139AC04, 0x1930
.incbin "baserom.nds", 0x139C534, 0x48
.incbin "baserom.nds", 0x139C57C, 0x48
.incbin "baserom.nds", 0x139C5C4, 0x1930
.incbin "baserom.nds", 0x139DEF4, 0x1930
.incbin "baserom.nds", 0x139F824, 0x1930
.incbin "baserom.nds", 0x13A1154, 0x1930
.incbin "baserom.nds", 0x13A2A84, 0x48
.incbin "baserom.nds", 0x13A2ACC, 0x48
.incbin "baserom.nds", 0x13A2B14, 0x0
.incbin "baserom.nds", 0x13A2B14, 0x1930
.incbin "baserom.nds", 0x13A4444, 0x0
.incbin "baserom.nds", 0x13A4444, 0x1930
.incbin "baserom.nds", 0x13A5D74, 0x48
.incbin "baserom.nds", 0x13A5DBC, 0x48
.incbin "baserom.nds", 0x13A5E04, 0x0
.incbin "baserom.nds", 0x13A5E04, 0x1930
.incbin "baserom.nds", 0x13A7734, 0x0
.incbin "baserom.nds", 0x13A7734, 0x1930
.incbin "baserom.nds", 0x13A9064, 0x48
.incbin "baserom.nds", 0x13A90AC, 0x48
.incbin "baserom.nds", 0x13A90F4, 0x1930
.incbin "baserom.nds", 0x13AAA24, 0x1930
.incbin "baserom.nds", 0x13AC354, 0x1930
.incbin "baserom.nds", 0x13ADC84, 0x1930
.incbin "baserom.nds", 0x13AF5B4, 0x48
.incbin "baserom.nds", 0x13AF5FC, 0x48
.incbin "baserom.nds", 0x13AF644, 0x1930
.incbin "baserom.nds", 0x13B0F74, 0x1930
.incbin "baserom.nds", 0x13B28A4, 0x1930
.incbin "baserom.nds", 0x13B41D4, 0x1930
.incbin "baserom.nds", 0x13B5B04, 0x48
.incbin "baserom.nds", 0x13B5B4C, 0x48
.incbin "baserom.nds", 0x13B5B94, 0x1930
.incbin "baserom.nds", 0x13B74C4, 0x1930
.incbin "baserom.nds", 0x13B8DF4, 0x1930
.incbin "baserom.nds", 0x13BA724, 0x1930
.incbin "baserom.nds", 0x13BC054, 0x48
.incbin "baserom.nds", 0x13BC09C, 0x48
.incbin "baserom.nds", 0x13BC0E4, 0x1930
.incbin "baserom.nds", 0x13BDA14, 0x1930
.incbin "baserom.nds", 0x13BF344, 0x1930
.incbin "baserom.nds", 0x13C0C74, 0x1930
.incbin "baserom.nds", 0x13C25A4, 0x48
.incbin "baserom.nds", 0x13C25EC, 0x48
.incbin "baserom.nds", 0x13C2634, 0x1930
.incbin "baserom.nds", 0x13C3F64, 0x1930
.incbin "baserom.nds", 0x13C5894, 0x1930
.incbin "baserom.nds", 0x13C71C4, 0x1930
.incbin "baserom.nds", 0x13C8AF4, 0x48
.incbin "baserom.nds", 0x13C8B3C, 0x48
.incbin "baserom.nds", 0x13C8B84, 0x1930
.incbin "baserom.nds", 0x13CA4B4, 0x1930
.incbin "baserom.nds", 0x13CBDE4, 0x1930
.incbin "baserom.nds", 0x13CD714, 0x1930
.incbin "baserom.nds", 0x13CF044, 0x48
.incbin "baserom.nds", 0x13CF08C, 0x48
.incbin "baserom.nds", 0x13CF0D4, 0x1930
.incbin "baserom.nds", 0x13D0A04, 0x1930
.incbin "baserom.nds", 0x13D2334, 0x1930
.incbin "baserom.nds", 0x13D3C64, 0x1930
.incbin "baserom.nds", 0x13D5594, 0x48
.incbin "baserom.nds", 0x13D55DC, 0x48
.incbin "baserom.nds", 0x13D5624, 0x1930
.incbin "baserom.nds", 0x13D6F54, 0x1930
.incbin "baserom.nds", 0x13D8884, 0x1930
.incbin "baserom.nds", 0x13DA1B4, 0x1930
.incbin "baserom.nds", 0x13DBAE4, 0x48
.incbin "baserom.nds", 0x13DBB2C, 0x48
.incbin "baserom.nds", 0x13DBB74, 0x1930
.incbin "baserom.nds", 0x13DD4A4, 0x1930
.incbin "baserom.nds", 0x13DEDD4, 0x1930
.incbin "baserom.nds", 0x13E0704, 0x1930
.incbin "baserom.nds", 0x13E2034, 0x48
.incbin "baserom.nds", 0x13E207C, 0x48
.incbin "baserom.nds", 0x13E20C4, 0x1930
.incbin "baserom.nds", 0x13E39F4, 0x1930
.incbin "baserom.nds", 0x13E5324, 0x1930
.incbin "baserom.nds", 0x13E6C54, 0x1930
.incbin "baserom.nds", 0x13E8584, 0x48
.incbin "baserom.nds", 0x13E85CC, 0x48
.incbin "baserom.nds", 0x13E8614, 0x1930
.incbin "baserom.nds", 0x13E9F44, 0x1930
.incbin "baserom.nds", 0x13EB874, 0x1930
.incbin "baserom.nds", 0x13ED1A4, 0x1930
.incbin "baserom.nds", 0x13EEAD4, 0x48
.incbin "baserom.nds", 0x13EEB1C, 0x48
.incbin "baserom.nds", 0x13EEB64, 0x1930
.incbin "baserom.nds", 0x13F0494, 0x1930
.incbin "baserom.nds", 0x13F1DC4, 0x1930
.incbin "baserom.nds", 0x13F36F4, 0x1930
.incbin "baserom.nds", 0x13F5024, 0x48
.incbin "baserom.nds", 0x13F506C, 0x48
.incbin "baserom.nds", 0x13F50B4, 0x1930
.incbin "baserom.nds", 0x13F69E4, 0x1930
.incbin "baserom.nds", 0x13F8314, 0x1930
.incbin "baserom.nds", 0x13F9C44, 0x1930
.incbin "baserom.nds", 0x13FB574, 0x48
.incbin "baserom.nds", 0x13FB5BC, 0x48
.incbin "baserom.nds", 0x13FB604, 0x1930
.incbin "baserom.nds", 0x13FCF34, 0x1930
.incbin "baserom.nds", 0x13FE864, 0x1930
.incbin "baserom.nds", 0x1400194, 0x1930
.incbin "baserom.nds", 0x1401AC4, 0x48
.incbin "baserom.nds", 0x1401B0C, 0x48
.incbin "baserom.nds", 0x1401B54, 0x1930
.incbin "baserom.nds", 0x1403484, 0x1930
.incbin "baserom.nds", 0x1404DB4, 0x1930
.incbin "baserom.nds", 0x14066E4, 0x1930
.incbin "baserom.nds", 0x1408014, 0x48
.incbin "baserom.nds", 0x140805C, 0x48
.incbin "baserom.nds", 0x14080A4, 0x1930
.incbin "baserom.nds", 0x14099D4, 0x1930
.incbin "baserom.nds", 0x140B304, 0x1930
.incbin "baserom.nds", 0x140CC34, 0x1930
.incbin "baserom.nds", 0x140E564, 0x48
.incbin "baserom.nds", 0x140E5AC, 0x48
.incbin "baserom.nds", 0x140E5F4, 0x1930
.incbin "baserom.nds", 0x140FF24, 0x1930
.incbin "baserom.nds", 0x1411854, 0x1930
.incbin "baserom.nds", 0x1413184, 0x1930
.incbin "baserom.nds", 0x1414AB4, 0x48
.incbin "baserom.nds", 0x1414AFC, 0x48
.incbin "baserom.nds", 0x1414B44, 0x1930
.incbin "baserom.nds", 0x1416474, 0x1930
.incbin "baserom.nds", 0x1417DA4, 0x1930
.incbin "baserom.nds", 0x14196D4, 0x1930
.incbin "baserom.nds", 0x141B004, 0x48
.incbin "baserom.nds", 0x141B04C, 0x48
.incbin "baserom.nds", 0x141B094, 0x1930
.incbin "baserom.nds", 0x141C9C4, 0x1930
.incbin "baserom.nds", 0x141E2F4, 0x1930
.incbin "baserom.nds", 0x141FC24, 0x1930
.incbin "baserom.nds", 0x1421554, 0x48
.incbin "baserom.nds", 0x142159C, 0x48
.incbin "baserom.nds", 0x14215E4, 0x1930
.incbin "baserom.nds", 0x1422F14, 0x1930
.incbin "baserom.nds", 0x1424844, 0x1930
.incbin "baserom.nds", 0x1426174, 0x1930
.incbin "baserom.nds", 0x1427AA4, 0x48
.incbin "baserom.nds", 0x1427AEC, 0x48
.incbin "baserom.nds", 0x1427B34, 0x1930
.incbin "baserom.nds", 0x1429464, 0x1930
.incbin "baserom.nds", 0x142AD94, 0x1930
.incbin "baserom.nds", 0x142C6C4, 0x1930
.incbin "baserom.nds", 0x142DFF4, 0x48
.incbin "baserom.nds", 0x142E03C, 0x48
.incbin "baserom.nds", 0x142E084, 0x1930
.incbin "baserom.nds", 0x142F9B4, 0x1930
.incbin "baserom.nds", 0x14312E4, 0x1930
.incbin "baserom.nds", 0x1432C14, 0x1930
.incbin "baserom.nds", 0x1434544, 0x48
.incbin "baserom.nds", 0x143458C, 0x48
.incbin "baserom.nds", 0x14345D4, 0x1930
.incbin "baserom.nds", 0x1435F04, 0x1930
.incbin "baserom.nds", 0x1437834, 0x1930
.incbin "baserom.nds", 0x1439164, 0x1930
.incbin "baserom.nds", 0x143AA94, 0x48
.incbin "baserom.nds", 0x143AADC, 0x48
.incbin "baserom.nds", 0x143AB24, 0x1930
.incbin "baserom.nds", 0x143C454, 0x1930
.incbin "baserom.nds", 0x143DD84, 0x1930
.incbin "baserom.nds", 0x143F6B4, 0x1930
.incbin "baserom.nds", 0x1440FE4, 0x48
.incbin "baserom.nds", 0x144102C, 0x48
.incbin "baserom.nds", 0x1441074, 0x1930
.incbin "baserom.nds", 0x14429A4, 0x1930
.incbin "baserom.nds", 0x14442D4, 0x1930
.incbin "baserom.nds", 0x1445C04, 0x1930
.incbin "baserom.nds", 0x1447534, 0x48
.incbin "baserom.nds", 0x144757C, 0x48
.incbin "baserom.nds", 0x14475C4, 0x1930
.incbin "baserom.nds", 0x1448EF4, 0x1930
.incbin "baserom.nds", 0x144A824, 0x1930
.incbin "baserom.nds", 0x144C154, 0x1930
.incbin "baserom.nds", 0x144DA84, 0x48
.incbin "baserom.nds", 0x144DACC, 0x48
.incbin "baserom.nds", 0x144DB14, 0x1930
.incbin "baserom.nds", 0x144F444, 0x1930
.incbin "baserom.nds", 0x1450D74, 0x1930
.incbin "baserom.nds", 0x14526A4, 0x1930
.incbin "baserom.nds", 0x1453FD4, 0x48
.incbin "baserom.nds", 0x145401C, 0x48
.incbin "baserom.nds", 0x1454064, 0x1930
.incbin "baserom.nds", 0x1455994, 0x1930
.incbin "baserom.nds", 0x14572C4, 0x1930
.incbin "baserom.nds", 0x1458BF4, 0x1930
.incbin "baserom.nds", 0x145A524, 0x48
.incbin "baserom.nds", 0x145A56C, 0x48
.incbin "baserom.nds", 0x145A5B4, 0x1930
.incbin "baserom.nds", 0x145BEE4, 0x1930
.incbin "baserom.nds", 0x145D814, 0x1930
.incbin "baserom.nds", 0x145F144, 0x1930
.incbin "baserom.nds", 0x1460A74, 0x48
.incbin "baserom.nds", 0x1460ABC, 0x48
.incbin "baserom.nds", 0x1460B04, 0x1930
.incbin "baserom.nds", 0x1462434, 0x1930
.incbin "baserom.nds", 0x1463D64, 0x1930
.incbin "baserom.nds", 0x1465694, 0x1930
.incbin "baserom.nds", 0x1466FC4, 0x48
.incbin "baserom.nds", 0x146700C, 0x48
.incbin "baserom.nds", 0x1467054, 0x1930
.incbin "baserom.nds", 0x1468984, 0x1930
.incbin "baserom.nds", 0x146A2B4, 0x1930
.incbin "baserom.nds", 0x146BBE4, 0x1930
.incbin "baserom.nds", 0x146D514, 0x48
.incbin "baserom.nds", 0x146D55C, 0x48
.incbin "baserom.nds", 0x146D5A4, 0x1930
.incbin "baserom.nds", 0x146EED4, 0x1930
.incbin "baserom.nds", 0x1470804, 0x1930
.incbin "baserom.nds", 0x1472134, 0x1930
.incbin "baserom.nds", 0x1473A64, 0x48
.incbin "baserom.nds", 0x1473AAC, 0x48
.incbin "baserom.nds", 0x1473AF4, 0x1930
.incbin "baserom.nds", 0x1475424, 0x1930
.incbin "baserom.nds", 0x1476D54, 0x1930
.incbin "baserom.nds", 0x1478684, 0x1930
.incbin "baserom.nds", 0x1479FB4, 0x48
.incbin "baserom.nds", 0x1479FFC, 0x48
.incbin "baserom.nds", 0x147A044, 0x1930
.incbin "baserom.nds", 0x147B974, 0x1930
.incbin "baserom.nds", 0x147D2A4, 0x1930
.incbin "baserom.nds", 0x147EBD4, 0x1930
.incbin "baserom.nds", 0x1480504, 0x48
.incbin "baserom.nds", 0x148054C, 0x48
.incbin "baserom.nds", 0x1480594, 0x1930
.incbin "baserom.nds", 0x1481EC4, 0x1930
.incbin "baserom.nds", 0x14837F4, 0x1930
.incbin "baserom.nds", 0x1485124, 0x1930
.incbin "baserom.nds", 0x1486A54, 0x48
.incbin "baserom.nds", 0x1486A9C, 0x48
.incbin "baserom.nds", 0x1486AE4, 0x1930
.incbin "baserom.nds", 0x1488414, 0x1930
.incbin "baserom.nds", 0x1489D44, 0x1930
.incbin "baserom.nds", 0x148B674, 0x1930
.incbin "baserom.nds", 0x148CFA4, 0x48
.incbin "baserom.nds", 0x148CFEC, 0x48
.incbin "baserom.nds", 0x148D034, 0x1930
.incbin "baserom.nds", 0x148E964, 0x1930
.incbin "baserom.nds", 0x1490294, 0x1930
.incbin "baserom.nds", 0x1491BC4, 0x1930
.incbin "baserom.nds", 0x14934F4, 0x48
.incbin "baserom.nds", 0x149353C, 0x48
.incbin "baserom.nds", 0x1493584, 0x1930
.incbin "baserom.nds", 0x1494EB4, 0x1930
.incbin "baserom.nds", 0x14967E4, 0x1930
.incbin "baserom.nds", 0x1498114, 0x1930
.incbin "baserom.nds", 0x1499A44, 0x48
.incbin "baserom.nds", 0x1499A8C, 0x48
.incbin "baserom.nds", 0x1499AD4, 0x1930
.incbin "baserom.nds", 0x149B404, 0x1930
.incbin "baserom.nds", 0x149CD34, 0x1930
.incbin "baserom.nds", 0x149E664, 0x1930
.incbin "baserom.nds", 0x149FF94, 0x48
.incbin "baserom.nds", 0x149FFDC, 0x48
.incbin "baserom.nds", 0x14A0024, 0x1930
.incbin "baserom.nds", 0x14A1954, 0x1930
.incbin "baserom.nds", 0x14A3284, 0x1930
.incbin "baserom.nds", 0x14A4BB4, 0x1930
.incbin "baserom.nds", 0x14A64E4, 0x48
.incbin "baserom.nds", 0x14A652C, 0x48
.incbin "baserom.nds", 0x14A6574, 0x1930
.incbin "baserom.nds", 0x14A7EA4, 0x1930
.incbin "baserom.nds", 0x14A97D4, 0x1930
.incbin "baserom.nds", 0x14AB104, 0x1930
.incbin "baserom.nds", 0x14ACA34, 0x48
.incbin "baserom.nds", 0x14ACA7C, 0x48
.incbin "baserom.nds", 0x14ACAC4, 0x1930
.incbin "baserom.nds", 0x14AE3F4, 0x1930
.incbin "baserom.nds", 0x14AFD24, 0x1930
.incbin "baserom.nds", 0x14B1654, 0x1930
.incbin "baserom.nds", 0x14B2F84, 0x48
.incbin "baserom.nds", 0x14B2FCC, 0x48
.incbin "baserom.nds", 0x14B3014, 0x1930
.incbin "baserom.nds", 0x14B4944, 0x1930
.incbin "baserom.nds", 0x14B6274, 0x1930
.incbin "baserom.nds", 0x14B7BA4, 0x1930
.incbin "baserom.nds", 0x14B94D4, 0x48
.incbin "baserom.nds", 0x14B951C, 0x48
.incbin "baserom.nds", 0x14B9564, 0x1930
.incbin "baserom.nds", 0x14BAE94, 0x1930
.incbin "baserom.nds", 0x14BC7C4, 0x1930
.incbin "baserom.nds", 0x14BE0F4, 0x1930
.incbin "baserom.nds", 0x14BFA24, 0x48
.incbin "baserom.nds", 0x14BFA6C, 0x48
.incbin "baserom.nds", 0x14BFAB4, 0x1930
.incbin "baserom.nds", 0x14C13E4, 0x1930
.incbin "baserom.nds", 0x14C2D14, 0x1930
.incbin "baserom.nds", 0x14C4644, 0x1930
.incbin "baserom.nds", 0x14C5F74, 0x48
.incbin "baserom.nds", 0x14C5FBC, 0x48
.incbin "baserom.nds", 0x14C6004, 0x1930
.incbin "baserom.nds", 0x14C7934, 0x1930
.incbin "baserom.nds", 0x14C9264, 0x1930
.incbin "baserom.nds", 0x14CAB94, 0x1930
.incbin "baserom.nds", 0x14CC4C4, 0x48
.incbin "baserom.nds", 0x14CC50C, 0x48
.incbin "baserom.nds", 0x14CC554, 0x1930
.incbin "baserom.nds", 0x14CDE84, 0x1930
.incbin "baserom.nds", 0x14CF7B4, 0x1930
.incbin "baserom.nds", 0x14D10E4, 0x1930
.incbin "baserom.nds", 0x14D2A14, 0x48
.incbin "baserom.nds", 0x14D2A5C, 0x48
.incbin "baserom.nds", 0x14D2AA4, 0x1930
.incbin "baserom.nds", 0x14D43D4, 0x1930
.incbin "baserom.nds", 0x14D5D04, 0x1930
.incbin "baserom.nds", 0x14D7634, 0x1930
.incbin "baserom.nds", 0x14D8F64, 0x48
.incbin "baserom.nds", 0x14D8FAC, 0x48
.incbin "baserom.nds", 0x14D8FF4, 0x1930
.incbin "baserom.nds", 0x14DA924, 0x1930
.incbin "baserom.nds", 0x14DC254, 0x1930
.incbin "baserom.nds", 0x14DDB84, 0x1930
.incbin "baserom.nds", 0x14DF4B4, 0x48
.incbin "baserom.nds", 0x14DF4FC, 0x48
.incbin "baserom.nds", 0x14DF544, 0x0
.incbin "baserom.nds", 0x14DF544, 0x1930
.incbin "baserom.nds", 0x14E0E74, 0x0
.incbin "baserom.nds", 0x14E0E74, 0x1930
.incbin "baserom.nds", 0x14E27A4, 0x48
.incbin "baserom.nds", 0x14E27EC, 0x48
.incbin "baserom.nds", 0x14E2834, 0x1930
.incbin "baserom.nds", 0x14E4164, 0x1930
.incbin "baserom.nds", 0x14E5A94, 0x1930
.incbin "baserom.nds", 0x14E73C4, 0x1930
.incbin "baserom.nds", 0x14E8CF4, 0x48
.incbin "baserom.nds", 0x14E8D3C, 0x48
.incbin "baserom.nds", 0x14E8D84, 0x1930
.incbin "baserom.nds", 0x14EA6B4, 0x1930
.incbin "baserom.nds", 0x14EBFE4, 0x1930
.incbin "baserom.nds", 0x14ED914, 0x1930
.incbin "baserom.nds", 0x14EF244, 0x48
.incbin "baserom.nds", 0x14EF28C, 0x48
.incbin "baserom.nds", 0x14EF2D4, 0x1930
.incbin "baserom.nds", 0x14F0C04, 0x1930
.incbin "baserom.nds", 0x14F2534, 0x1930
.incbin "baserom.nds", 0x14F3E64, 0x1930
.incbin "baserom.nds", 0x14F5794, 0x48
.incbin "baserom.nds", 0x14F57DC, 0x48
.incbin "baserom.nds", 0x14F5824, 0x1930
.incbin "baserom.nds", 0x14F7154, 0x1930
.incbin "baserom.nds", 0x14F8A84, 0x1930
.incbin "baserom.nds", 0x14FA3B4, 0x1930
.incbin "baserom.nds", 0x14FBCE4, 0x48
.incbin "baserom.nds", 0x14FBD2C, 0x48
.incbin "baserom.nds", 0x14FBD74, 0x1930
.incbin "baserom.nds", 0x14FD6A4, 0x1930
.incbin "baserom.nds", 0x14FEFD4, 0x1930
.incbin "baserom.nds", 0x1500904, 0x1930
.incbin "baserom.nds", 0x1502234, 0x48
.incbin "baserom.nds", 0x150227C, 0x48
.incbin "baserom.nds", 0x15022C4, 0x1930
.incbin "baserom.nds", 0x1503BF4, 0x1930
.incbin "baserom.nds", 0x1505524, 0x1930
.incbin "baserom.nds", 0x1506E54, 0x1930
.incbin "baserom.nds", 0x1508784, 0x48
.incbin "baserom.nds", 0x15087CC, 0x48
.incbin "baserom.nds", 0x1508814, 0x1930
.incbin "baserom.nds", 0x150A144, 0x1930
.incbin "baserom.nds", 0x150BA74, 0x1930
.incbin "baserom.nds", 0x150D3A4, 0x1930
.incbin "baserom.nds", 0x150ECD4, 0x48
.incbin "baserom.nds", 0x150ED1C, 0x48
.incbin "baserom.nds", 0x150ED64, 0x1930
.incbin "baserom.nds", 0x1510694, 0x1930
.incbin "baserom.nds", 0x1511FC4, 0x1930
.incbin "baserom.nds", 0x15138F4, 0x1930
.incbin "baserom.nds", 0x1515224, 0x48
.incbin "baserom.nds", 0x151526C, 0x48
.incbin "baserom.nds", 0x15152B4, 0x1930
.incbin "baserom.nds", 0x1516BE4, 0x1930
.incbin "baserom.nds", 0x1518514, 0x1930
.incbin "baserom.nds", 0x1519E44, 0x1930
.incbin "baserom.nds", 0x151B774, 0x48
.incbin "baserom.nds", 0x151B7BC, 0x48
.incbin "baserom.nds", 0x151B804, 0x1930
.incbin "baserom.nds", 0x151D134, 0x1930
.incbin "baserom.nds", 0x151EA64, 0x1930
.incbin "baserom.nds", 0x1520394, 0x1930
.incbin "baserom.nds", 0x1521CC4, 0x48
.incbin "baserom.nds", 0x1521D0C, 0x48
.incbin "baserom.nds", 0x1521D54, 0x1930
.incbin "baserom.nds", 0x1523684, 0x1930
.incbin "baserom.nds", 0x1524FB4, 0x1930
.incbin "baserom.nds", 0x15268E4, 0x1930
.incbin "baserom.nds", 0x1528214, 0x48
.incbin "baserom.nds", 0x152825C, 0x48
.incbin "baserom.nds", 0x15282A4, 0x1930
.incbin "baserom.nds", 0x1529BD4, 0x1930
.incbin "baserom.nds", 0x152B504, 0x1930
.incbin "baserom.nds", 0x152CE34, 0x1930
.incbin "baserom.nds", 0x152E764, 0x48
.incbin "baserom.nds", 0x152E7AC, 0x48
.incbin "baserom.nds", 0x152E7F4, 0x1930
.incbin "baserom.nds", 0x1530124, 0x1930
.incbin "baserom.nds", 0x1531A54, 0x1930
.incbin "baserom.nds", 0x1533384, 0x1930
.incbin "baserom.nds", 0x1534CB4, 0x48
.incbin "baserom.nds", 0x1534CFC, 0x48
.incbin "baserom.nds", 0x1534D44, 0x1930
.incbin "baserom.nds", 0x1536674, 0x1930
.incbin "baserom.nds", 0x1537FA4, 0x1930
.incbin "baserom.nds", 0x15398D4, 0x1930
.incbin "baserom.nds", 0x153B204, 0x48
.incbin "baserom.nds", 0x153B24C, 0x48
.incbin "baserom.nds", 0x153B294, 0x1930
.incbin "baserom.nds", 0x153CBC4, 0x1930
.incbin "baserom.nds", 0x153E4F4, 0x1930
.incbin "baserom.nds", 0x153FE24, 0x1930
.incbin "baserom.nds", 0x1541754, 0x48
.incbin "baserom.nds", 0x154179C, 0x48
.incbin "baserom.nds", 0x15417E4, 0x1930
.incbin "baserom.nds", 0x1543114, 0x1930
.incbin "baserom.nds", 0x1544A44, 0x1930
.incbin "baserom.nds", 0x1546374, 0x1930
.incbin "baserom.nds", 0x1547CA4, 0x48
.incbin "baserom.nds", 0x1547CEC, 0x48
.incbin "baserom.nds", 0x1547D34, 0x1930
.incbin "baserom.nds", 0x1549664, 0x1930
.incbin "baserom.nds", 0x154AF94, 0x1930
.incbin "baserom.nds", 0x154C8C4, 0x1930
.incbin "baserom.nds", 0x154E1F4, 0x48
.incbin "baserom.nds", 0x154E23C, 0x48
.incbin "baserom.nds", 0x154E284, 0x1930
.incbin "baserom.nds", 0x154FBB4, 0x1930
.incbin "baserom.nds", 0x15514E4, 0x1930
.incbin "baserom.nds", 0x1552E14, 0x1930
.incbin "baserom.nds", 0x1554744, 0x48
.incbin "baserom.nds", 0x155478C, 0x48
.incbin "baserom.nds", 0x15547D4, 0x1930
.incbin "baserom.nds", 0x1556104, 0x1930
.incbin "baserom.nds", 0x1557A34, 0x1930
.incbin "baserom.nds", 0x1559364, 0x1930
.incbin "baserom.nds", 0x155AC94, 0x48
.incbin "baserom.nds", 0x155ACDC, 0x48
.incbin "baserom.nds", 0x155AD24, 0x1930
.incbin "baserom.nds", 0x155C654, 0x1930
.incbin "baserom.nds", 0x155DF84, 0x1930
.incbin "baserom.nds", 0x155F8B4, 0x1930
.incbin "baserom.nds", 0x15611E4, 0x48
.incbin "baserom.nds", 0x156122C, 0x48
.incbin "baserom.nds", 0x1561274, 0x1930
.incbin "baserom.nds", 0x1562BA4, 0x1930
.incbin "baserom.nds", 0x15644D4, 0x1930
.incbin "baserom.nds", 0x1565E04, 0x1930
.incbin "baserom.nds", 0x1567734, 0x48
.incbin "baserom.nds", 0x156777C, 0x48
.incbin "baserom.nds", 0x15677C4, 0x1930
.incbin "baserom.nds", 0x15690F4, 0x1930
.incbin "baserom.nds", 0x156AA24, 0x1930
.incbin "baserom.nds", 0x156C354, 0x1930
.incbin "baserom.nds", 0x156DC84, 0x48
.incbin "baserom.nds", 0x156DCCC, 0x48
.incbin "baserom.nds", 0x156DD14, 0x1930
.incbin "baserom.nds", 0x156F644, 0x1930
.incbin "baserom.nds", 0x1570F74, 0x1930
.incbin "baserom.nds", 0x15728A4, 0x1930
.incbin "baserom.nds", 0x15741D4, 0x48
.incbin "baserom.nds", 0x157421C, 0x48
.incbin "baserom.nds", 0x1574264, 0x1930
.incbin "baserom.nds", 0x1575B94, 0x1930
.incbin "baserom.nds", 0x15774C4, 0x1930
.incbin "baserom.nds", 0x1578DF4, 0x1930
.incbin "baserom.nds", 0x157A724, 0x48
.incbin "baserom.nds", 0x157A76C, 0x48
.incbin "baserom.nds", 0x157A7B4, 0x1930
.incbin "baserom.nds", 0x157C0E4, 0x1930
.incbin "baserom.nds", 0x157DA14, 0x1930
.incbin "baserom.nds", 0x157F344, 0x1930
.incbin "baserom.nds", 0x1580C74, 0x48
.incbin "baserom.nds", 0x1580CBC, 0x48
.incbin "baserom.nds", 0x1580D04, 0x1930
.incbin "baserom.nds", 0x1582634, 0x1930
.incbin "baserom.nds", 0x1583F64, 0x1930
.incbin "baserom.nds", 0x1585894, 0x1930
.incbin "baserom.nds", 0x15871C4, 0x48
.incbin "baserom.nds", 0x158720C, 0x48
.incbin "baserom.nds", 0x1587254, 0x1930
.incbin "baserom.nds", 0x1588B84, 0x1930
.incbin "baserom.nds", 0x158A4B4, 0x1930
.incbin "baserom.nds", 0x158BDE4, 0x1930
.incbin "baserom.nds", 0x158D714, 0x48
.incbin "baserom.nds", 0x158D75C, 0x48
.incbin "baserom.nds", 0x158D7A4, 0x1930
.incbin "baserom.nds", 0x158F0D4, 0x1930
.incbin "baserom.nds", 0x1590A04, 0x1930
.incbin "baserom.nds", 0x1592334, 0x1930
.incbin "baserom.nds", 0x1593C64, 0x48
.incbin "baserom.nds", 0x1593CAC, 0x48
.incbin "baserom.nds", 0x1593CF4, 0x1930
.incbin "baserom.nds", 0x1595624, 0x1930
.incbin "baserom.nds", 0x1596F54, 0x1930
.incbin "baserom.nds", 0x1598884, 0x1930
.incbin "baserom.nds", 0x159A1B4, 0x48
.incbin "baserom.nds", 0x159A1FC, 0x48
.incbin "baserom.nds", 0x159A244, 0x1930
.incbin "baserom.nds", 0x159BB74, 0x1930
.incbin "baserom.nds", 0x159D4A4, 0x1930
.incbin "baserom.nds", 0x159EDD4, 0x1930
.incbin "baserom.nds", 0x15A0704, 0x48
.incbin "baserom.nds", 0x15A074C, 0x48
.incbin "baserom.nds", 0x15A0794, 0x1930
.incbin "baserom.nds", 0x15A20C4, 0x1930
.incbin "baserom.nds", 0x15A39F4, 0x1930
.incbin "baserom.nds", 0x15A5324, 0x1930
.incbin "baserom.nds", 0x15A6C54, 0x48
.incbin "baserom.nds", 0x15A6C9C, 0x48
.incbin "baserom.nds", 0x15A6CE4, 0x0
.incbin "baserom.nds", 0x15A6CE4, 0x1930
.incbin "baserom.nds", 0x15A8614, 0x0
.incbin "baserom.nds", 0x15A8614, 0x1930
.incbin "baserom.nds", 0x15A9F44, 0x48
.incbin "baserom.nds", 0x15A9F8C, 0x48
.incbin "baserom.nds", 0x15A9FD4, 0x1930
.incbin "baserom.nds", 0x15AB904, 0x1930
.incbin "baserom.nds", 0x15AD234, 0x1930
.incbin "baserom.nds", 0x15AEB64, 0x1930
.incbin "baserom.nds", 0x15B0494, 0x48
.incbin "baserom.nds", 0x15B04DC, 0x48
.incbin "baserom.nds", 0x15B0524, 0x1930
.incbin "baserom.nds", 0x15B1E54, 0x1930
.incbin "baserom.nds", 0x15B3784, 0x1930
.incbin "baserom.nds", 0x15B50B4, 0x1930
.incbin "baserom.nds", 0x15B69E4, 0x48
.incbin "baserom.nds", 0x15B6A2C, 0x48
.incbin "baserom.nds", 0x15B6A74, 0x0
.incbin "baserom.nds", 0x15B6A74, 0x1930
.incbin "baserom.nds", 0x15B83A4, 0x0
.incbin "baserom.nds", 0x15B83A4, 0x1930
.incbin "baserom.nds", 0x15B9CD4, 0x48
.incbin "baserom.nds", 0x15B9D1C, 0x48
.incbin "baserom.nds", 0x15B9D64, 0x0
.incbin "baserom.nds", 0x15B9D64, 0x1930
.incbin "baserom.nds", 0x15BB694, 0x0
.incbin "baserom.nds", 0x15BB694, 0x1930
.incbin "baserom.nds", 0x15BCFC4, 0x48
.incbin "baserom.nds", 0x15BD00C, 0x48
.incbin "baserom.nds", 0x15BD054, 0x1930
.incbin "baserom.nds", 0x15BE984, 0x0
.incbin "baserom.nds", 0x15BE984, 0x1930
.incbin "baserom.nds", 0x15C02B4, 0x0
.incbin "baserom.nds", 0x15C02B4, 0x48
.incbin "baserom.nds", 0x15C02FC, 0x48
.incbin "baserom.nds", 0x15C0344, 0x1930
.incbin "baserom.nds", 0x15C1C74, 0x1930
.incbin "baserom.nds", 0x15C35A4, 0x1930
.incbin "baserom.nds", 0x15C4ED4, 0x1930
.incbin "baserom.nds", 0x15C6804, 0x48
.incbin "baserom.nds", 0x15C684C, 0x48
.incbin "baserom.nds", 0x15C6894, 0x1930
.incbin "baserom.nds", 0x15C81C4, 0x1930
.incbin "baserom.nds", 0x15C9AF4, 0x1930
.incbin "baserom.nds", 0x15CB424, 0x1930
.incbin "baserom.nds", 0x15CCD54, 0x48
.incbin "baserom.nds", 0x15CCD9C, 0x48
.incbin "baserom.nds", 0x15CCDE4, 0x1930
.incbin "baserom.nds", 0x15CE714, 0x0
.incbin "baserom.nds", 0x15CE714, 0x1930
.incbin "baserom.nds", 0x15D0044, 0x0
.incbin "baserom.nds", 0x15D0044, 0x48
.incbin "baserom.nds", 0x15D008C, 0x48
.incbin "baserom.nds", 0x15D00D4, 0x1930
.incbin "baserom.nds", 0x15D1A04, 0x0
.incbin "baserom.nds", 0x15D1A04, 0x1930
.incbin "baserom.nds", 0x15D3334, 0x0
.incbin "baserom.nds", 0x15D3334, 0x48
.incbin "baserom.nds", 0x15D337C, 0x48
.incbin "baserom.nds", 0x15D33C4, 0x0
.incbin "baserom.nds", 0x15D33C4, 0x1930
.incbin "baserom.nds", 0x15D4CF4, 0x0
.incbin "baserom.nds", 0x15D4CF4, 0x1930
.incbin "baserom.nds", 0x15D6624, 0x48
.incbin "baserom.nds", 0x15D666C, 0x48
.incbin "baserom.nds", 0x15D66B4, 0x0
.incbin "baserom.nds", 0x15D66B4, 0x1930
.incbin "baserom.nds", 0x15D7FE4, 0x0
.incbin "baserom.nds", 0x15D7FE4, 0x1930
.incbin "baserom.nds", 0x15D9914, 0x48
.incbin "baserom.nds", 0x15D995C, 0x48
.incbin "baserom.nds", 0x15D99A4, 0x0
.incbin "baserom.nds", 0x15D99A4, 0x1930
.incbin "baserom.nds", 0x15DB2D4, 0x0
.incbin "baserom.nds", 0x15DB2D4, 0x1930
.incbin "baserom.nds", 0x15DCC04, 0x48
.incbin "baserom.nds", 0x15DCC4C, 0x48
.incbin "baserom.nds", 0x15DCC94, 0x1930
.incbin "baserom.nds", 0x15DE5C4, 0x1930
.incbin "baserom.nds", 0x15DFEF4, 0x1930
.incbin "baserom.nds", 0x15E1824, 0x1930
.incbin "baserom.nds", 0x15E3154, 0x48
.incbin "baserom.nds", 0x15E319C, 0x48
.incbin "baserom.nds", 0x15E31E4, 0x1930
.incbin "baserom.nds", 0x15E4B14, 0x1930
.incbin "baserom.nds", 0x15E6444, 0x1930
.incbin "baserom.nds", 0x15E7D74, 0x1930
.incbin "baserom.nds", 0x15E96A4, 0x48
.incbin "baserom.nds", 0x15E96EC, 0x48
.incbin "baserom.nds", 0x15E9734, 0x1930
.incbin "baserom.nds", 0x15EB064, 0x1930
.incbin "baserom.nds", 0x15EC994, 0x1930
.incbin "baserom.nds", 0x15EE2C4, 0x1930
.incbin "baserom.nds", 0x15EFBF4, 0x48
.incbin "baserom.nds", 0x15EFC3C, 0x48
.incbin "baserom.nds", 0x15EFC84, 0x0
.incbin "baserom.nds", 0x15EFC84, 0x1930
.incbin "baserom.nds", 0x15F15B4, 0x0
.incbin "baserom.nds", 0x15F15B4, 0x1930
.incbin "baserom.nds", 0x15F2EE4, 0x48
.incbin "baserom.nds", 0x15F2F2C, 0x48
.incbin "baserom.nds", 0x15F2F74, 0x0
.incbin "baserom.nds", 0x15F2F74, 0x1930
.incbin "baserom.nds", 0x15F48A4, 0x0
.incbin "baserom.nds", 0x15F48A4, 0x1930
.incbin "baserom.nds", 0x15F61D4, 0x48
.incbin "baserom.nds", 0x15F621C, 0x48
.incbin "baserom.nds", 0x15F6264, 0x0
.incbin "baserom.nds", 0x15F6264, 0x1930
.incbin "baserom.nds", 0x15F7B94, 0x0
.incbin "baserom.nds", 0x15F7B94, 0x1930
.incbin "baserom.nds", 0x15F94C4, 0x48
.incbin "baserom.nds", 0x15F950C, 0x48
.incbin "baserom.nds", 0x15F9554, 0x1930
.incbin "baserom.nds", 0x15FAE84, 0x1930
.incbin "baserom.nds", 0x15FC7B4, 0x1930
.incbin "baserom.nds", 0x15FE0E4, 0x1930
.incbin "baserom.nds", 0x15FFA14, 0x48
.incbin "baserom.nds", 0x15FFA5C, 0x48
.incbin "baserom.nds", 0x15FFAA4, 0x1930
.incbin "baserom.nds", 0x16013D4, 0x1930
.incbin "baserom.nds", 0x1602D04, 0x1930
.incbin "baserom.nds", 0x1604634, 0x1930
.incbin "baserom.nds", 0x1605F64, 0x48
.incbin "baserom.nds", 0x1605FAC, 0x48
.incbin "baserom.nds", 0x1605FF4, 0x1930
.incbin "baserom.nds", 0x1607924, 0x1930
.incbin "baserom.nds", 0x1609254, 0x1930
.incbin "baserom.nds", 0x160AB84, 0x1930
.incbin "baserom.nds", 0x160C4B4, 0x48
.incbin "baserom.nds", 0x160C4FC, 0x48
.incbin "baserom.nds", 0x160C544, 0x1930
.incbin "baserom.nds", 0x160DE74, 0x1930
.incbin "baserom.nds", 0x160F7A4, 0x1930
.incbin "baserom.nds", 0x16110D4, 0x1930
.incbin "baserom.nds", 0x1612A04, 0x48
.incbin "baserom.nds", 0x1612A4C, 0x48
.incbin "baserom.nds", 0x1612A94, 0x1930
.incbin "baserom.nds", 0x16143C4, 0x1930
.incbin "baserom.nds", 0x1615CF4, 0x1930
.incbin "baserom.nds", 0x1617624, 0x1930
.incbin "baserom.nds", 0x1618F54, 0x48
.incbin "baserom.nds", 0x1618F9C, 0x48
.incbin "baserom.nds", 0x1618FE4, 0x1930
.incbin "baserom.nds", 0x161A914, 0x1930
.incbin "baserom.nds", 0x161C244, 0x1930
.incbin "baserom.nds", 0x161DB74, 0x1930
.incbin "baserom.nds", 0x161F4A4, 0x48
.incbin "baserom.nds", 0x161F4EC, 0x48
.incbin "baserom.nds", 0x161F534, 0x1930
.incbin "baserom.nds", 0x1620E64, 0x1930
.incbin "baserom.nds", 0x1622794, 0x1930
.incbin "baserom.nds", 0x16240C4, 0x1930
.incbin "baserom.nds", 0x16259F4, 0x48
.incbin "baserom.nds", 0x1625A3C, 0x48
.incbin "baserom.nds", 0x1625A84, 0x1930
.incbin "baserom.nds", 0x16273B4, 0x1930
.incbin "baserom.nds", 0x1628CE4, 0x1930
.incbin "baserom.nds", 0x162A614, 0x1930
.incbin "baserom.nds", 0x162BF44, 0x48
.incbin "baserom.nds", 0x162BF8C, 0x48
.incbin "baserom.nds", 0x162BFD4, 0x1930
.incbin "baserom.nds", 0x162D904, 0x1930
.incbin "baserom.nds", 0x162F234, 0x1930
.incbin "baserom.nds", 0x1630B64, 0x1930
.incbin "baserom.nds", 0x1632494, 0x48
.incbin "baserom.nds", 0x16324DC, 0x48
.incbin "baserom.nds", 0x1632524, 0x1930
.incbin "baserom.nds", 0x1633E54, 0x1930
.incbin "baserom.nds", 0x1635784, 0x1930
.incbin "baserom.nds", 0x16370B4, 0x1930
.incbin "baserom.nds", 0x16389E4, 0x48
.incbin "baserom.nds", 0x1638A2C, 0x48
.incbin "baserom.nds", 0x1638A74, 0x1930
.incbin "baserom.nds", 0x163A3A4, 0x1930
.incbin "baserom.nds", 0x163BCD4, 0x1930
.incbin "baserom.nds", 0x163D604, 0x1930
.incbin "baserom.nds", 0x163EF34, 0x48
.incbin "baserom.nds", 0x163EF7C, 0x48
.incbin "baserom.nds", 0x163EFC4, 0x1930
.incbin "baserom.nds", 0x16408F4, 0x1930
.incbin "baserom.nds", 0x1642224, 0x1930
.incbin "baserom.nds", 0x1643B54, 0x1930
.incbin "baserom.nds", 0x1645484, 0x48
.incbin "baserom.nds", 0x16454CC, 0x48
.incbin "baserom.nds", 0x1645514, 0x1930
.incbin "baserom.nds", 0x1646E44, 0x1930
.incbin "baserom.nds", 0x1648774, 0x1930
.incbin "baserom.nds", 0x164A0A4, 0x1930
.incbin "baserom.nds", 0x164B9D4, 0x48
.incbin "baserom.nds", 0x164BA1C, 0x48
.incbin "baserom.nds", 0x164BA64, 0x1930
.incbin "baserom.nds", 0x164D394, 0x1930
.incbin "baserom.nds", 0x164ECC4, 0x1930
.incbin "baserom.nds", 0x16505F4, 0x1930
.incbin "baserom.nds", 0x1651F24, 0x48
.incbin "baserom.nds", 0x1651F6C, 0x48
.incbin "baserom.nds", 0x1651FB4, 0x1930
.incbin "baserom.nds", 0x16538E4, 0x1930
.incbin "baserom.nds", 0x1655214, 0x1930
.incbin "baserom.nds", 0x1656B44, 0x1930
.incbin "baserom.nds", 0x1658474, 0x48
.incbin "baserom.nds", 0x16584BC, 0x48
.incbin "baserom.nds", 0x1658504, 0x1930
.incbin "baserom.nds", 0x1659E34, 0x1930
.incbin "baserom.nds", 0x165B764, 0x1930
.incbin "baserom.nds", 0x165D094, 0x1930
.incbin "baserom.nds", 0x165E9C4, 0x48
.incbin "baserom.nds", 0x165EA0C, 0x48
.incbin "baserom.nds", 0x165EA54, 0x1930
.incbin "baserom.nds", 0x1660384, 0x1930
.incbin "baserom.nds", 0x1661CB4, 0x1930
.incbin "baserom.nds", 0x16635E4, 0x1930
.incbin "baserom.nds", 0x1664F14, 0x48
.incbin "baserom.nds", 0x1664F5C, 0x48
.incbin "baserom.nds", 0x1664FA4, 0x1930
.incbin "baserom.nds", 0x16668D4, 0x1930
.incbin "baserom.nds", 0x1668204, 0x1930
.incbin "baserom.nds", 0x1669B34, 0x1930
.incbin "baserom.nds", 0x166B464, 0x48
.incbin "baserom.nds", 0x166B4AC, 0x48
.incbin "baserom.nds", 0x166B4F4, 0x1930
.incbin "baserom.nds", 0x166CE24, 0x1930
.incbin "baserom.nds", 0x166E754, 0x1930
.incbin "baserom.nds", 0x1670084, 0x1930
.incbin "baserom.nds", 0x16719B4, 0x48
.incbin "baserom.nds", 0x16719FC, 0x48
.incbin "baserom.nds", 0x1671A44, 0x1930
.incbin "baserom.nds", 0x1673374, 0x1930
.incbin "baserom.nds", 0x1674CA4, 0x1930
.incbin "baserom.nds", 0x16765D4, 0x1930
.incbin "baserom.nds", 0x1677F04, 0x48
.incbin "baserom.nds", 0x1677F4C, 0x48
.incbin "baserom.nds", 0x1677F94, 0x1930
.incbin "baserom.nds", 0x16798C4, 0x1930
.incbin "baserom.nds", 0x167B1F4, 0x1930
.incbin "baserom.nds", 0x167CB24, 0x1930
.incbin "baserom.nds", 0x167E454, 0x48
.incbin "baserom.nds", 0x167E49C, 0x48
.incbin "baserom.nds", 0x167E4E4, 0x1930
.incbin "baserom.nds", 0x167FE14, 0x1930
.incbin "baserom.nds", 0x1681744, 0x1930
.incbin "baserom.nds", 0x1683074, 0x1930
.incbin "baserom.nds", 0x16849A4, 0x48
.incbin "baserom.nds", 0x16849EC, 0x48
.incbin "baserom.nds", 0x1684A34, 0x1930
.incbin "baserom.nds", 0x1686364, 0x1930
.incbin "baserom.nds", 0x1687C94, 0x1930
.incbin "baserom.nds", 0x16895C4, 0x1930
.incbin "baserom.nds", 0x168AEF4, 0x48
.incbin "baserom.nds", 0x168AF3C, 0x48
.incbin "baserom.nds", 0x168AF84, 0x1930
.incbin "baserom.nds", 0x168C8B4, 0x1930
.incbin "baserom.nds", 0x168E1E4, 0x1930
.incbin "baserom.nds", 0x168FB14, 0x1930
.incbin "baserom.nds", 0x1691444, 0x48
.incbin "baserom.nds", 0x169148C, 0x48
.incbin "baserom.nds", 0x16914D4, 0x1930
.incbin "baserom.nds", 0x1692E04, 0x1930
.incbin "baserom.nds", 0x1694734, 0x1930
.incbin "baserom.nds", 0x1696064, 0x1930
.incbin "baserom.nds", 0x1697994, 0x48
.incbin "baserom.nds", 0x16979DC, 0x48
.incbin "baserom.nds", 0x1697A24, 0x1930
.incbin "baserom.nds", 0x1699354, 0x1930
.incbin "baserom.nds", 0x169AC84, 0x1930
.incbin "baserom.nds", 0x169C5B4, 0x1930
.incbin "baserom.nds", 0x169DEE4, 0x48
.incbin "baserom.nds", 0x169DF2C, 0x48
.incbin "baserom.nds", 0x169DF74, 0x1930
.incbin "baserom.nds", 0x169F8A4, 0x1930
.incbin "baserom.nds", 0x16A11D4, 0x1930
.incbin "baserom.nds", 0x16A2B04, 0x1930
.incbin "baserom.nds", 0x16A4434, 0x48
.incbin "baserom.nds", 0x16A447C, 0x48
.incbin "baserom.nds", 0x16A44C4, 0x1930
.incbin "baserom.nds", 0x16A5DF4, 0x1930
.incbin "baserom.nds", 0x16A7724, 0x1930
.incbin "baserom.nds", 0x16A9054, 0x1930
.incbin "baserom.nds", 0x16AA984, 0x48
.incbin "baserom.nds", 0x16AA9CC, 0x48
.incbin "baserom.nds", 0x16AAA14, 0x1930
.incbin "baserom.nds", 0x16AC344, 0x1930
.incbin "baserom.nds", 0x16ADC74, 0x1930
.incbin "baserom.nds", 0x16AF5A4, 0x1930
.incbin "baserom.nds", 0x16B0ED4, 0x48
.incbin "baserom.nds", 0x16B0F1C, 0x48
.incbin "baserom.nds", 0x16B0F64, 0x1930
.incbin "baserom.nds", 0x16B2894, 0x1930
.incbin "baserom.nds", 0x16B41C4, 0x1930
.incbin "baserom.nds", 0x16B5AF4, 0x1930
.incbin "baserom.nds", 0x16B7424, 0x48
.incbin "baserom.nds", 0x16B746C, 0x48
.incbin "baserom.nds", 0x16B74B4, 0x1930
.incbin "baserom.nds", 0x16B8DE4, 0x1930
.incbin "baserom.nds", 0x16BA714, 0x1930
.incbin "baserom.nds", 0x16BC044, 0x1930
.incbin "baserom.nds", 0x16BD974, 0x48
.incbin "baserom.nds", 0x16BD9BC, 0x48
.incbin "baserom.nds", 0x16BDA04, 0x1930
.incbin "baserom.nds", 0x16BF334, 0x1930
.incbin "baserom.nds", 0x16C0C64, 0x1930
.incbin "baserom.nds", 0x16C2594, 0x1930
.incbin "baserom.nds", 0x16C3EC4, 0x48
.incbin "baserom.nds", 0x16C3F0C, 0x48
.incbin "baserom.nds", 0x16C3F54, 0x1930
.incbin "baserom.nds", 0x16C5884, 0x1930
.incbin "baserom.nds", 0x16C71B4, 0x1930
.incbin "baserom.nds", 0x16C8AE4, 0x1930
.incbin "baserom.nds", 0x16CA414, 0x48
.incbin "baserom.nds", 0x16CA45C, 0x48
.incbin "baserom.nds", 0x16CA4A4, 0x1930
.incbin "baserom.nds", 0x16CBDD4, 0x1930
.incbin "baserom.nds", 0x16CD704, 0x1930
.incbin "baserom.nds", 0x16CF034, 0x1930
.incbin "baserom.nds", 0x16D0964, 0x48
.incbin "baserom.nds", 0x16D09AC, 0x48
.incbin "baserom.nds", 0x16D09F4, 0x1930
.incbin "baserom.nds", 0x16D2324, 0x1930
.incbin "baserom.nds", 0x16D3C54, 0x1930
.incbin "baserom.nds", 0x16D5584, 0x1930
.incbin "baserom.nds", 0x16D6EB4, 0x48
.incbin "baserom.nds", 0x16D6EFC, 0x48
.incbin "baserom.nds", 0x16D6F44, 0x1930
.incbin "baserom.nds", 0x16D8874, 0x1930
.incbin "baserom.nds", 0x16DA1A4, 0x1930
.incbin "baserom.nds", 0x16DBAD4, 0x1930
.incbin "baserom.nds", 0x16DD404, 0x48
.incbin "baserom.nds", 0x16DD44C, 0x48
.incbin "baserom.nds", 0x16DD494, 0x1930
.incbin "baserom.nds", 0x16DEDC4, 0x1930
.incbin "baserom.nds", 0x16E06F4, 0x1930
.incbin "baserom.nds", 0x16E2024, 0x1930
.incbin "baserom.nds", 0x16E3954, 0x48
.incbin "baserom.nds", 0x16E399C, 0x48
.incbin "baserom.nds", 0x16E39E4, 0x1930
.incbin "baserom.nds", 0x16E5314, 0x1930
.incbin "baserom.nds", 0x16E6C44, 0x1930
.incbin "baserom.nds", 0x16E8574, 0x1930
.incbin "baserom.nds", 0x16E9EA4, 0x48
.incbin "baserom.nds", 0x16E9EEC, 0x48
.incbin "baserom.nds", 0x16E9F34, 0x1930
.incbin "baserom.nds", 0x16EB864, 0x1930
.incbin "baserom.nds", 0x16ED194, 0x1930
.incbin "baserom.nds", 0x16EEAC4, 0x1930
.incbin "baserom.nds", 0x16F03F4, 0x48
.incbin "baserom.nds", 0x16F043C, 0x48
.incbin "baserom.nds", 0x16F0484, 0x1930
.incbin "baserom.nds", 0x16F1DB4, 0x1930
.incbin "baserom.nds", 0x16F36E4, 0x1930
.incbin "baserom.nds", 0x16F5014, 0x1930
.incbin "baserom.nds", 0x16F6944, 0x48
.incbin "baserom.nds", 0x16F698C, 0x48
.incbin "baserom.nds", 0x16F69D4, 0x0
.incbin "baserom.nds", 0x16F69D4, 0x1930
.incbin "baserom.nds", 0x16F8304, 0x0
.incbin "baserom.nds", 0x16F8304, 0x1930
.incbin "baserom.nds", 0x16F9C34, 0x48
.incbin "baserom.nds", 0x16F9C7C, 0x48
.incbin "baserom.nds", 0x16F9CC4, 0x1930
.incbin "baserom.nds", 0x16FB5F4, 0x1930
.incbin "baserom.nds", 0x16FCF24, 0x1930
.incbin "baserom.nds", 0x16FE854, 0x1930
.incbin "baserom.nds", 0x1700184, 0x48
.incbin "baserom.nds", 0x17001CC, 0x48
.incbin "baserom.nds", 0x1700214, 0x1930
.incbin "baserom.nds", 0x1701B44, 0x1930
.incbin "baserom.nds", 0x1703474, 0x1930
.incbin "baserom.nds", 0x1704DA4, 0x1930
.incbin "baserom.nds", 0x17066D4, 0x48
.incbin "baserom.nds", 0x170671C, 0x48
.incbin "baserom.nds", 0x1706764, 0x1930
.incbin "baserom.nds", 0x1708094, 0x1930
.incbin "baserom.nds", 0x17099C4, 0x1930
.incbin "baserom.nds", 0x170B2F4, 0x1930
.incbin "baserom.nds", 0x170CC24, 0x48
.incbin "baserom.nds", 0x170CC6C, 0x48
.incbin "baserom.nds", 0x170CCB4, 0x1930
.incbin "baserom.nds", 0x170E5E4, 0x1930
.incbin "baserom.nds", 0x170FF14, 0x1930
.incbin "baserom.nds", 0x1711844, 0x1930
.incbin "baserom.nds", 0x1713174, 0x48
.incbin "baserom.nds", 0x17131BC, 0x48
.incbin "baserom.nds", 0x1713204, 0x1930
.incbin "baserom.nds", 0x1714B34, 0x1930
.incbin "baserom.nds", 0x1716464, 0x1930
.incbin "baserom.nds", 0x1717D94, 0x1930
.incbin "baserom.nds", 0x17196C4, 0x48
.incbin "baserom.nds", 0x171970C, 0x48
.incbin "baserom.nds", 0x1719754, 0x1930
.incbin "baserom.nds", 0x171B084, 0x1930
.incbin "baserom.nds", 0x171C9B4, 0x1930
.incbin "baserom.nds", 0x171E2E4, 0x1930
.incbin "baserom.nds", 0x171FC14, 0x48
.incbin "baserom.nds", 0x171FC5C, 0x48
.incbin "baserom.nds", 0x171FCA4, 0x1930
.incbin "baserom.nds", 0x17215D4, 0x1930
.incbin "baserom.nds", 0x1722F04, 0x1930
.incbin "baserom.nds", 0x1724834, 0x1930
.incbin "baserom.nds", 0x1726164, 0x48
.incbin "baserom.nds", 0x17261AC, 0x48
.incbin "baserom.nds", 0x17261F4, 0x1930
.incbin "baserom.nds", 0x1727B24, 0x1930
.incbin "baserom.nds", 0x1729454, 0x1930
.incbin "baserom.nds", 0x172AD84, 0x1930
.incbin "baserom.nds", 0x172C6B4, 0x48
.incbin "baserom.nds", 0x172C6FC, 0x48
.incbin "baserom.nds", 0x172C744, 0x1930
.incbin "baserom.nds", 0x172E074, 0x1930
.incbin "baserom.nds", 0x172F9A4, 0x1930
.incbin "baserom.nds", 0x17312D4, 0x1930
.incbin "baserom.nds", 0x1732C04, 0x48
.incbin "baserom.nds", 0x1732C4C, 0x48
.incbin "baserom.nds", 0x1732C94, 0x1930
.incbin "baserom.nds", 0x17345C4, 0x1930
.incbin "baserom.nds", 0x1735EF4, 0x1930
.incbin "baserom.nds", 0x1737824, 0x1930
.incbin "baserom.nds", 0x1739154, 0x48
.incbin "baserom.nds", 0x173919C, 0x48
.incbin "baserom.nds", 0x17391E4, 0x1930
.incbin "baserom.nds", 0x173AB14, 0x1930
.incbin "baserom.nds", 0x173C444, 0x1930
.incbin "baserom.nds", 0x173DD74, 0x1930
.incbin "baserom.nds", 0x173F6A4, 0x48
.incbin "baserom.nds", 0x173F6EC, 0x48
.incbin "baserom.nds", 0x173F734, 0x1930
.incbin "baserom.nds", 0x1741064, 0x1930
.incbin "baserom.nds", 0x1742994, 0x1930
.incbin "baserom.nds", 0x17442C4, 0x1930
.incbin "baserom.nds", 0x1745BF4, 0x48
.incbin "baserom.nds", 0x1745C3C, 0x48
.incbin "baserom.nds", 0x1745C84, 0x1930
.incbin "baserom.nds", 0x17475B4, 0x1930
.incbin "baserom.nds", 0x1748EE4, 0x1930
.incbin "baserom.nds", 0x174A814, 0x1930
.incbin "baserom.nds", 0x174C144, 0x48
.incbin "baserom.nds", 0x174C18C, 0x48
.incbin "baserom.nds", 0x174C1D4, 0x1930
.incbin "baserom.nds", 0x174DB04, 0x1930
.incbin "baserom.nds", 0x174F434, 0x1930
.incbin "baserom.nds", 0x1750D64, 0x1930
.incbin "baserom.nds", 0x1752694, 0x48
.incbin "baserom.nds", 0x17526DC, 0x48
.incbin "baserom.nds", 0x1752724, 0x1930
.incbin "baserom.nds", 0x1754054, 0x1930
.incbin "baserom.nds", 0x1755984, 0x1930
.incbin "baserom.nds", 0x17572B4, 0x1930
.incbin "baserom.nds", 0x1758BE4, 0x48
.incbin "baserom.nds", 0x1758C2C, 0x48
.incbin "baserom.nds", 0x1758C74, 0x1930
.incbin "baserom.nds", 0x175A5A4, 0x1930
.incbin "baserom.nds", 0x175BED4, 0x1930
.incbin "baserom.nds", 0x175D804, 0x1930
.incbin "baserom.nds", 0x175F134, 0x48
.incbin "baserom.nds", 0x175F17C, 0x48
.incbin "baserom.nds", 0x175F1C4, 0x1930
.incbin "baserom.nds", 0x1760AF4, 0x1930
.incbin "baserom.nds", 0x1762424, 0x1930
.incbin "baserom.nds", 0x1763D54, 0x1930
.incbin "baserom.nds", 0x1765684, 0x48
.incbin "baserom.nds", 0x17656CC, 0x48
.incbin "baserom.nds", 0x1765714, 0x1930
.incbin "baserom.nds", 0x1767044, 0x1930
.incbin "baserom.nds", 0x1768974, 0x1930
.incbin "baserom.nds", 0x176A2A4, 0x1930
.incbin "baserom.nds", 0x176BBD4, 0x48
.incbin "baserom.nds", 0x176BC1C, 0x48
.incbin "baserom.nds", 0x176BC64, 0x1930
.incbin "baserom.nds", 0x176D594, 0x1930
.incbin "baserom.nds", 0x176EEC4, 0x1930
.incbin "baserom.nds", 0x17707F4, 0x1930
.incbin "baserom.nds", 0x1772124, 0x48
.incbin "baserom.nds", 0x177216C, 0x48
.incbin "baserom.nds", 0x17721B4, 0x1930
.incbin "baserom.nds", 0x1773AE4, 0x1930
.incbin "baserom.nds", 0x1775414, 0x1930
.incbin "baserom.nds", 0x1776D44, 0x1930
.incbin "baserom.nds", 0x1778674, 0x48
.incbin "baserom.nds", 0x17786BC, 0x48
.incbin "baserom.nds", 0x1778704, 0x0
.incbin "baserom.nds", 0x1778704, 0x1930
.incbin "baserom.nds", 0x177A034, 0x0
.incbin "baserom.nds", 0x177A034, 0x1930
.incbin "baserom.nds", 0x177B964, 0x48
.incbin "baserom.nds", 0x177B9AC, 0x48
.incbin "baserom.nds", 0x177B9F4, 0x1930
.incbin "baserom.nds", 0x177D324, 0x0
.incbin "baserom.nds", 0x177D324, 0x1930
.incbin "baserom.nds", 0x177EC54, 0x0
.incbin "baserom.nds", 0x177EC54, 0x48
.incbin "baserom.nds", 0x177EC9C, 0x48
.incbin "baserom.nds", 0x177ECE4, 0x1930
.incbin "baserom.nds", 0x1780614, 0x1930
.incbin "baserom.nds", 0x1781F44, 0x1930
.incbin "baserom.nds", 0x1783874, 0x1930
.incbin "baserom.nds", 0x17851A4, 0x48
.incbin "baserom.nds", 0x17851EC, 0x48
.incbin "baserom.nds", 0x1785234, 0x1930
.incbin "baserom.nds", 0x1786B64, 0x1930
.incbin "baserom.nds", 0x1788494, 0x1930
.incbin "baserom.nds", 0x1789DC4, 0x1930
.incbin "baserom.nds", 0x178B6F4, 0x48
.incbin "baserom.nds", 0x178B73C, 0x48
.incbin "baserom.nds", 0x178B784, 0x1930
.incbin "baserom.nds", 0x178D0B4, 0x1930
.incbin "baserom.nds", 0x178E9E4, 0x1930
.incbin "baserom.nds", 0x1790314, 0x1930
.incbin "baserom.nds", 0x1791C44, 0x48
.incbin "baserom.nds", 0x1791C8C, 0x48
.incbin "baserom.nds", 0x1791CD4, 0x1930
.incbin "baserom.nds", 0x1793604, 0x1930
.incbin "baserom.nds", 0x1794F34, 0x1930
.incbin "baserom.nds", 0x1796864, 0x1930
.incbin "baserom.nds", 0x1798194, 0x48
.incbin "baserom.nds", 0x17981DC, 0x48
.incbin "baserom.nds", 0x1798224, 0x1930
.incbin "baserom.nds", 0x1799B54, 0x1930
.incbin "baserom.nds", 0x179B484, 0x1930
.incbin "baserom.nds", 0x179CDB4, 0x1930
.incbin "baserom.nds", 0x179E6E4, 0x48
.incbin "baserom.nds", 0x179E72C, 0x48
.incbin "baserom.nds", 0x179E774, 0x1930
.incbin "baserom.nds", 0x17A00A4, 0x1930
.incbin "baserom.nds", 0x17A19D4, 0x1930
.incbin "baserom.nds", 0x17A3304, 0x1930
.incbin "baserom.nds", 0x17A4C34, 0x48
.incbin "baserom.nds", 0x17A4C7C, 0x48
.incbin "baserom.nds", 0x17A4CC4, 0x1930
.incbin "baserom.nds", 0x17A65F4, 0x1930
.incbin "baserom.nds", 0x17A7F24, 0x1930
.incbin "baserom.nds", 0x17A9854, 0x1930
.incbin "baserom.nds", 0x17AB184, 0x48
.incbin "baserom.nds", 0x17AB1CC, 0x48
.incbin "baserom.nds", 0x17AB214, 0x1930
.incbin "baserom.nds", 0x17ACB44, 0x1930
.incbin "baserom.nds", 0x17AE474, 0x1930
.incbin "baserom.nds", 0x17AFDA4, 0x1930
.incbin "baserom.nds", 0x17B16D4, 0x48
.incbin "baserom.nds", 0x17B171C, 0x48
.incbin "baserom.nds", 0x17B1764, 0x1930
.incbin "baserom.nds", 0x17B3094, 0x1930
.incbin "baserom.nds", 0x17B49C4, 0x1930
.incbin "baserom.nds", 0x17B62F4, 0x1930
.incbin "baserom.nds", 0x17B7C24, 0x48
.incbin "baserom.nds", 0x17B7C6C, 0x48
.incbin "baserom.nds", 0x17B7CB4, 0x1930
.incbin "baserom.nds", 0x17B95E4, 0x1930
.incbin "baserom.nds", 0x17BAF14, 0x1930
.incbin "baserom.nds", 0x17BC844, 0x1930
.incbin "baserom.nds", 0x17BE174, 0x48
.incbin "baserom.nds", 0x17BE1BC, 0x48
.incbin "baserom.nds", 0x17BE204, 0x1930
.incbin "baserom.nds", 0x17BFB34, 0x1930
.incbin "baserom.nds", 0x17C1464, 0x1930
.incbin "baserom.nds", 0x17C2D94, 0x1930
.incbin "baserom.nds", 0x17C46C4, 0x48
.incbin "baserom.nds", 0x17C470C, 0x48
.incbin "baserom.nds", 0x17C4754, 0x1930
.incbin "baserom.nds", 0x17C6084, 0x1930
.incbin "baserom.nds", 0x17C79B4, 0x1930
.incbin "baserom.nds", 0x17C92E4, 0x1930
.incbin "baserom.nds", 0x17CAC14, 0x48
.incbin "baserom.nds", 0x17CAC5C, 0x48
.incbin "baserom.nds", 0x17CACA4, 0x1930
.incbin "baserom.nds", 0x17CC5D4, 0x1930
.incbin "baserom.nds", 0x17CDF04, 0x1930
.incbin "baserom.nds", 0x17CF834, 0x1930
.incbin "baserom.nds", 0x17D1164, 0x48
.incbin "baserom.nds", 0x17D11AC, 0x48
.incbin "baserom.nds", 0x17D11F4, 0x1930
.incbin "baserom.nds", 0x17D2B24, 0x1930
.incbin "baserom.nds", 0x17D4454, 0x1930
.incbin "baserom.nds", 0x17D5D84, 0x1930
.incbin "baserom.nds", 0x17D76B4, 0x48
.incbin "baserom.nds", 0x17D76FC, 0x48
.incbin "baserom.nds", 0x17D7744, 0x1930
.incbin "baserom.nds", 0x17D9074, 0x1930
.incbin "baserom.nds", 0x17DA9A4, 0x1930
.incbin "baserom.nds", 0x17DC2D4, 0x1930
.incbin "baserom.nds", 0x17DDC04, 0x48
.incbin "baserom.nds", 0x17DDC4C, 0x48
.incbin "baserom.nds", 0x17DDC94, 0x1930
.incbin "baserom.nds", 0x17DF5C4, 0x1930
.incbin "baserom.nds", 0x17E0EF4, 0x1930
.incbin "baserom.nds", 0x17E2824, 0x1930
.incbin "baserom.nds", 0x17E4154, 0x48
.incbin "baserom.nds", 0x17E419C, 0x48
.incbin "baserom.nds", 0x17E41E4, 0x1930
.incbin "baserom.nds", 0x17E5B14, 0x1930
.incbin "baserom.nds", 0x17E7444, 0x1930
.incbin "baserom.nds", 0x17E8D74, 0x1930
.incbin "baserom.nds", 0x17EA6A4, 0x48
.incbin "baserom.nds", 0x17EA6EC, 0x48
.incbin "baserom.nds", 0x17EA734, 0x1930
.incbin "baserom.nds", 0x17EC064, 0x1930
.incbin "baserom.nds", 0x17ED994, 0x1930
.incbin "baserom.nds", 0x17EF2C4, 0x1930
.incbin "baserom.nds", 0x17F0BF4, 0x48
.incbin "baserom.nds", 0x17F0C3C, 0x48
.incbin "baserom.nds", 0x17F0C84, 0x1930
.incbin "baserom.nds", 0x17F25B4, 0x1930
.incbin "baserom.nds", 0x17F3EE4, 0x1930
.incbin "baserom.nds", 0x17F5814, 0x1930
.incbin "baserom.nds", 0x17F7144, 0x48
.incbin "baserom.nds", 0x17F718C, 0x48
.incbin "baserom.nds", 0x17F71D4, 0x1930
.incbin "baserom.nds", 0x17F8B04, 0x1930
.incbin "baserom.nds", 0x17FA434, 0x1930
.incbin "baserom.nds", 0x17FBD64, 0x1930
.incbin "baserom.nds", 0x17FD694, 0x48
.incbin "baserom.nds", 0x17FD6DC, 0x48
.incbin "baserom.nds", 0x17FD724, 0x1930
.incbin "baserom.nds", 0x17FF054, 0x1930
.incbin "baserom.nds", 0x1800984, 0x1930
.incbin "baserom.nds", 0x18022B4, 0x1930
.incbin "baserom.nds", 0x1803BE4, 0x48
.incbin "baserom.nds", 0x1803C2C, 0x48
.incbin "baserom.nds", 0x1803C74, 0x1930
.incbin "baserom.nds", 0x18055A4, 0x1930
.incbin "baserom.nds", 0x1806ED4, 0x1930
.incbin "baserom.nds", 0x1808804, 0x1930
.incbin "baserom.nds", 0x180A134, 0x48
.incbin "baserom.nds", 0x180A17C, 0x48
.incbin "baserom.nds", 0x180A1C4, 0x0
.incbin "baserom.nds", 0x180A1C4, 0x1930
.incbin "baserom.nds", 0x180BAF4, 0x0
.incbin "baserom.nds", 0x180BAF4, 0x1930
.incbin "baserom.nds", 0x180D424, 0x48
.incbin "baserom.nds", 0x180D46C, 0x48
.incbin "baserom.nds", 0x180D4B4, 0x0
.incbin "baserom.nds", 0x180D4B4, 0x1930
.incbin "baserom.nds", 0x180EDE4, 0x0
.incbin "baserom.nds", 0x180EDE4, 0x1930
.incbin "baserom.nds", 0x1810714, 0x48
.incbin "baserom.nds", 0x181075C, 0x48
.incbin "baserom.nds", 0x18107A4, 0x1930
.incbin "baserom.nds", 0x18120D4, 0x1930
.incbin "baserom.nds", 0x1813A04, 0x1930
.incbin "baserom.nds", 0x1815334, 0x1930
.incbin "baserom.nds", 0x1816C64, 0x48
.incbin "baserom.nds", 0x1816CAC, 0x48
.incbin "baserom.nds", 0x1816CF4, 0x1930
.incbin "baserom.nds", 0x1818624, 0x1930
.incbin "baserom.nds", 0x1819F54, 0x1930
.incbin "baserom.nds", 0x181B884, 0x1930
.incbin "baserom.nds", 0x181D1B4, 0x48
.incbin "baserom.nds", 0x181D1FC, 0x48
.incbin "baserom.nds", 0x181D244, 0x1930
.incbin "baserom.nds", 0x181EB74, 0x1930
.incbin "baserom.nds", 0x18204A4, 0x1930
.incbin "baserom.nds", 0x1821DD4, 0x1930
.incbin "baserom.nds", 0x1823704, 0x48
.incbin "baserom.nds", 0x182374C, 0x48
.incbin "baserom.nds", 0x1823794, 0x1930
.incbin "baserom.nds", 0x18250C4, 0x1930
.incbin "baserom.nds", 0x18269F4, 0x1930
.incbin "baserom.nds", 0x1828324, 0x1930
.incbin "baserom.nds", 0x1829C54, 0x48
.incbin "baserom.nds", 0x1829C9C, 0x48
.incbin "baserom.nds", 0x1829CE4, 0x0
.incbin "baserom.nds", 0x1829CE4, 0x1930
.incbin "baserom.nds", 0x182B614, 0x0
.incbin "baserom.nds", 0x182B614, 0x1930
.incbin "baserom.nds", 0x182CF44, 0x48
.incbin "baserom.nds", 0x182CF8C, 0x48
.incbin "baserom.nds", 0x182CFD4, 0x0
.incbin "baserom.nds", 0x182CFD4, 0x1930
.incbin "baserom.nds", 0x182E904, 0x0
.incbin "baserom.nds", 0x182E904, 0x1930
.incbin "baserom.nds", 0x1830234, 0x48
.incbin "baserom.nds", 0x183027C, 0x48
.incbin "baserom.nds", 0x18302C4, 0x1930
.incbin "baserom.nds", 0x1831BF4, 0x1930
.incbin "baserom.nds", 0x1833524, 0x1930
.incbin "baserom.nds", 0x1834E54, 0x1930
.incbin "baserom.nds", 0x1836784, 0x48
.incbin "baserom.nds", 0x18367CC, 0x48
.incbin "baserom.nds", 0x1836814, 0x1930
.incbin "baserom.nds", 0x1838144, 0x1930
.incbin "baserom.nds", 0x1839A74, 0x1930
.incbin "baserom.nds", 0x183B3A4, 0x1930
.incbin "baserom.nds", 0x183CCD4, 0x48
.incbin "baserom.nds", 0x183CD1C, 0x48
.incbin "baserom.nds", 0x183CD64, 0x1930
.incbin "baserom.nds", 0x183E694, 0x1930
.incbin "baserom.nds", 0x183FFC4, 0x1930
.incbin "baserom.nds", 0x18418F4, 0x1930
.incbin "baserom.nds", 0x1843224, 0x48
.incbin "baserom.nds", 0x184326C, 0x48
.incbin "baserom.nds", 0x18432B4, 0x1930
.incbin "baserom.nds", 0x1844BE4, 0x1930
.incbin "baserom.nds", 0x1846514, 0x1930
.incbin "baserom.nds", 0x1847E44, 0x1930
.incbin "baserom.nds", 0x1849774, 0x48
.incbin "baserom.nds", 0x18497BC, 0x48
.incbin "baserom.nds", 0x1849804, 0x1930
.incbin "baserom.nds", 0x184B134, 0x1930
.incbin "baserom.nds", 0x184CA64, 0x1930
.incbin "baserom.nds", 0x184E394, 0x1930
.incbin "baserom.nds", 0x184FCC4, 0x48
.incbin "baserom.nds", 0x184FD0C, 0x48
.incbin "baserom.nds", 0x184FD54, 0x1930
.incbin "baserom.nds", 0x1851684, 0x1930
.incbin "baserom.nds", 0x1852FB4, 0x1930
.incbin "baserom.nds", 0x18548E4, 0x1930
.incbin "baserom.nds", 0x1856214, 0x48
.incbin "baserom.nds", 0x185625C, 0x48
.incbin "baserom.nds", 0x18562A4, 0x1930
.incbin "baserom.nds", 0x1857BD4, 0x1930
.incbin "baserom.nds", 0x1859504, 0x1930
.incbin "baserom.nds", 0x185AE34, 0x1930
.incbin "baserom.nds", 0x185C764, 0x48
.incbin "baserom.nds", 0x185C7AC, 0x48
.incbin "baserom.nds", 0x185C7F4, 0x1930
.incbin "baserom.nds", 0x185E124, 0x1930
.incbin "baserom.nds", 0x185FA54, 0x1930
.incbin "baserom.nds", 0x1861384, 0x1930
.incbin "baserom.nds", 0x1862CB4, 0x48
.incbin "baserom.nds", 0x1862CFC, 0x48
.incbin "baserom.nds", 0x1862D44, 0x1930
.incbin "baserom.nds", 0x1864674, 0x1930
.incbin "baserom.nds", 0x1865FA4, 0x1930
.incbin "baserom.nds", 0x18678D4, 0x1930
.incbin "baserom.nds", 0x1869204, 0x48
.incbin "baserom.nds", 0x186924C, 0x48
.incbin "baserom.nds", 0x1869294, 0x1930
.incbin "baserom.nds", 0x186ABC4, 0x1930
.incbin "baserom.nds", 0x186C4F4, 0x1930
.incbin "baserom.nds", 0x186DE24, 0x1930
.incbin "baserom.nds", 0x186F754, 0x48
.incbin "baserom.nds", 0x186F79C, 0x48
.incbin "baserom.nds", 0x186F7E4, 0x1930
.incbin "baserom.nds", 0x1871114, 0x1930
.incbin "baserom.nds", 0x1872A44, 0x1930
.incbin "baserom.nds", 0x1874374, 0x1930
.incbin "baserom.nds", 0x1875CA4, 0x48
.incbin "baserom.nds", 0x1875CEC, 0x48
.incbin "baserom.nds", 0x1875D34, 0x1930
.incbin "baserom.nds", 0x1877664, 0x1930
.incbin "baserom.nds", 0x1878F94, 0x1930
.incbin "baserom.nds", 0x187A8C4, 0x1930
.incbin "baserom.nds", 0x187C1F4, 0x48
.incbin "baserom.nds", 0x187C23C, 0x48
.incbin "baserom.nds", 0x187C284, 0x1930
.incbin "baserom.nds", 0x187DBB4, 0x1930
.incbin "baserom.nds", 0x187F4E4, 0x1930
.incbin "baserom.nds", 0x1880E14, 0x1930
.incbin "baserom.nds", 0x1882744, 0x48
.incbin "baserom.nds", 0x188278C, 0x48
.incbin "baserom.nds", 0x18827D4, 0x1930
.incbin "baserom.nds", 0x1884104, 0x1930
.incbin "baserom.nds", 0x1885A34, 0x1930
.incbin "baserom.nds", 0x1887364, 0x1930
.incbin "baserom.nds", 0x1888C94, 0x48
.incbin "baserom.nds", 0x1888CDC, 0x48
.incbin "baserom.nds", 0x1888D24, 0x1930
.incbin "baserom.nds", 0x188A654, 0x1930
.incbin "baserom.nds", 0x188BF84, 0x1930
.incbin "baserom.nds", 0x188D8B4, 0x1930
.incbin "baserom.nds", 0x188F1E4, 0x48
.incbin "baserom.nds", 0x188F22C, 0x48
.incbin "baserom.nds", 0x188F274, 0x1930
.incbin "baserom.nds", 0x1890BA4, 0x1930
.incbin "baserom.nds", 0x18924D4, 0x1930
.incbin "baserom.nds", 0x1893E04, 0x1930
.incbin "baserom.nds", 0x1895734, 0x48
.incbin "baserom.nds", 0x189577C, 0x48
.incbin "baserom.nds", 0x18957C4, 0x1930
.incbin "baserom.nds", 0x18970F4, 0x1930
.incbin "baserom.nds", 0x1898A24, 0x1930
.incbin "baserom.nds", 0x189A354, 0x1930
.incbin "baserom.nds", 0x189BC84, 0x48
.incbin "baserom.nds", 0x189BCCC, 0x48
.incbin "baserom.nds", 0x189BD14, 0x1930
.incbin "baserom.nds", 0x189D644, 0x1930
.incbin "baserom.nds", 0x189EF74, 0x1930
.incbin "baserom.nds", 0x18A08A4, 0x1930
.incbin "baserom.nds", 0x18A21D4, 0x48
.incbin "baserom.nds", 0x18A221C, 0x48
.incbin "baserom.nds", 0x18A2264, 0x1930
.incbin "baserom.nds", 0x18A3B94, 0x1930
.incbin "baserom.nds", 0x18A54C4, 0x1930
.incbin "baserom.nds", 0x18A6DF4, 0x1930
.incbin "baserom.nds", 0x18A8724, 0x48
.incbin "baserom.nds", 0x18A876C, 0x48
.incbin "baserom.nds", 0x18A87B4, 0x1930
.incbin "baserom.nds", 0x18AA0E4, 0x1930
.incbin "baserom.nds", 0x18ABA14, 0x1930
.incbin "baserom.nds", 0x18AD344, 0x1930
.incbin "baserom.nds", 0x18AEC74, 0x48
.incbin "baserom.nds", 0x18AECBC, 0x48
.incbin "baserom.nds", 0x18AED04, 0x1930
.incbin "baserom.nds", 0x18B0634, 0x1930
.incbin "baserom.nds", 0x18B1F64, 0x1930
.incbin "baserom.nds", 0x18B3894, 0x1930
.incbin "baserom.nds", 0x18B51C4, 0x48
.incbin "baserom.nds", 0x18B520C, 0x48
.incbin "baserom.nds", 0x18B5254, 0x1930
.incbin "baserom.nds", 0x18B6B84, 0x1930
.incbin "baserom.nds", 0x18B84B4, 0x1930
.incbin "baserom.nds", 0x18B9DE4, 0x1930
.incbin "baserom.nds", 0x18BB714, 0x48
.incbin "baserom.nds", 0x18BB75C, 0x48
.incbin "baserom.nds", 0x18BB7A4, 0x1930
.incbin "baserom.nds", 0x18BD0D4, 0x1930
.incbin "baserom.nds", 0x18BEA04, 0x1930
.incbin "baserom.nds", 0x18C0334, 0x1930
.incbin "baserom.nds", 0x18C1C64, 0x48
.incbin "baserom.nds", 0x18C1CAC, 0x48
.incbin "baserom.nds", 0x18C1CF4, 0x1930
.incbin "baserom.nds", 0x18C3624, 0x1930
.incbin "baserom.nds", 0x18C4F54, 0x1930
.incbin "baserom.nds", 0x18C6884, 0x1930
.incbin "baserom.nds", 0x18C81B4, 0x48
.incbin "baserom.nds", 0x18C81FC, 0x48
.incbin "baserom.nds", 0x18C8244, 0x1930
.incbin "baserom.nds", 0x18C9B74, 0x1930
.incbin "baserom.nds", 0x18CB4A4, 0x1930
.incbin "baserom.nds", 0x18CCDD4, 0x1930
.incbin "baserom.nds", 0x18CE704, 0x48
.incbin "baserom.nds", 0x18CE74C, 0x48
.incbin "baserom.nds", 0x18CE794, 0x1930
.incbin "baserom.nds", 0x18D00C4, 0x1930
.incbin "baserom.nds", 0x18D19F4, 0x1930
.incbin "baserom.nds", 0x18D3324, 0x1930
.incbin "baserom.nds", 0x18D4C54, 0x48
.incbin "baserom.nds", 0x18D4C9C, 0x48
.incbin "baserom.nds", 0x18D4CE4, 0x1930
.incbin "baserom.nds", 0x18D6614, 0x1930
.incbin "baserom.nds", 0x18D7F44, 0x1930
.incbin "baserom.nds", 0x18D9874, 0x1930
.incbin "baserom.nds", 0x18DB1A4, 0x48
.incbin "baserom.nds", 0x18DB1EC, 0x48
.incbin "baserom.nds", 0x18DB234, 0x1930
.incbin "baserom.nds", 0x18DCB64, 0x1930
.incbin "baserom.nds", 0x18DE494, 0x1930
.incbin "baserom.nds", 0x18DFDC4, 0x1930
.incbin "baserom.nds", 0x18E16F4, 0x48
.incbin "baserom.nds", 0x18E173C, 0x48
.incbin "baserom.nds", 0x18E1784, 0x1930
.incbin "baserom.nds", 0x18E30B4, 0x1930
.incbin "baserom.nds", 0x18E49E4, 0x1930
.incbin "baserom.nds", 0x18E6314, 0x1930
.incbin "baserom.nds", 0x18E7C44, 0x48
.incbin "baserom.nds", 0x18E7C8C, 0x48
.incbin "baserom.nds", 0x18E7CD4, 0x0
.incbin "baserom.nds", 0x18E7CD4, 0x1930
.incbin "baserom.nds", 0x18E9604, 0x0
.incbin "baserom.nds", 0x18E9604, 0x1930
.incbin "baserom.nds", 0x18EAF34, 0x48
.incbin "baserom.nds", 0x18EAF7C, 0x48
.incbin "baserom.nds", 0x18EAFC4, 0x0
.incbin "baserom.nds", 0x18EAFC4, 0x1930
.incbin "baserom.nds", 0x18EC8F4, 0x0
.incbin "baserom.nds", 0x18EC8F4, 0x1930
.incbin "baserom.nds", 0x18EE224, 0x48
.incbin "baserom.nds", 0x18EE26C, 0x48
.incbin "baserom.nds", 0x18EE2B4, 0x0
.incbin "baserom.nds", 0x18EE2B4, 0x1930
.incbin "baserom.nds", 0x18EFBE4, 0x0
.incbin "baserom.nds", 0x18EFBE4, 0x1930
.incbin "baserom.nds", 0x18F1514, 0x48
.incbin "baserom.nds", 0x18F155C, 0x48
.incbin "baserom.nds", 0x18F15A4, 0x0
.incbin "baserom.nds", 0x18F15A4, 0x1930
.incbin "baserom.nds", 0x18F2ED4, 0x0
.incbin "baserom.nds", 0x18F2ED4, 0x1930
.incbin "baserom.nds", 0x18F4804, 0x48
.incbin "baserom.nds", 0x18F484C, 0x48
.incbin "baserom.nds", 0x18F4894, 0x0
.incbin "baserom.nds", 0x18F4894, 0x1930
.incbin "baserom.nds", 0x18F61C4, 0x0
.incbin "baserom.nds", 0x18F61C4, 0x1930
.incbin "baserom.nds", 0x18F7AF4, 0x48
.incbin "baserom.nds", 0x18F7B3C, 0x48
.incbin "baserom.nds", 0x18F7B84, 0x0
.incbin "baserom.nds", 0x18F7B84, 0x1930
.incbin "baserom.nds", 0x18F94B4, 0x0
.incbin "baserom.nds", 0x18F94B4, 0x1930
.incbin "baserom.nds", 0x18FADE4, 0x48
.incbin "baserom.nds", 0x18FAE2C, 0x48
.incbin "baserom.nds", 0x18FAE74, 0x1930
.incbin "baserom.nds", 0x18FC7A4, 0x0
.incbin "baserom.nds", 0x18FC7A4, 0x1930
.incbin "baserom.nds", 0x18FE0D4, 0x0
.incbin "baserom.nds", 0x18FE0D4, 0x48
.incbin "baserom.nds", 0x18FE11C, 0x48
.incbin "baserom.nds", 0x18FE164, 0x0
.incbin "baserom.nds", 0x18FE164, 0x1930
.incbin "baserom.nds", 0x18FFA94, 0x0
.incbin "baserom.nds", 0x18FFA94, 0x1930
.incbin "baserom.nds", 0x19013C4, 0x48
.incbin "baserom.nds", 0x190140C, 0x48
.incbin "baserom.nds", 0x1901454, 0x0
.incbin "baserom.nds", 0x1901454, 0x1930
.incbin "baserom.nds", 0x1902D84, 0x0
.incbin "baserom.nds", 0x1902D84, 0x1930
.incbin "baserom.nds", 0x19046B4, 0x48
.incbin "baserom.nds", 0x19046FC, 0x48
.incbin "baserom.nds", 0x1904744, 0x0
.incbin "baserom.nds", 0x1904744, 0x1930
.incbin "baserom.nds", 0x1906074, 0x0
.incbin "baserom.nds", 0x1906074, 0x1930
.incbin "baserom.nds", 0x19079A4, 0x48
.incbin "baserom.nds", 0x19079EC, 0x48
.incbin "baserom.nds", 0x1907A34, 0x0
.incbin "baserom.nds", 0x1907A34, 0x1930
.incbin "baserom.nds", 0x1909364, 0x0
.incbin "baserom.nds", 0x1909364, 0x1930
.incbin "baserom.nds", 0x190AC94, 0x48
.incbin "baserom.nds", 0x190ACDC, 0x48
.incbin "baserom.nds", 0x190AD24, 0x0
.incbin "baserom.nds", 0x190AD24, 0x1930
.incbin "baserom.nds", 0x190C654, 0x0
.incbin "baserom.nds", 0x190C654, 0x1930
.incbin "baserom.nds", 0x190DF84, 0x48
.incbin "baserom.nds", 0x190DFCC, 0x48
.incbin "baserom.nds", 0x190E014, 0x0
.incbin "baserom.nds", 0x190E014, 0x1930
.incbin "baserom.nds", 0x190F944, 0x0
.incbin "baserom.nds", 0x190F944, 0x1930
.incbin "baserom.nds", 0x1911274, 0x48
.incbin "baserom.nds", 0x19112BC, 0x48
.incbin "baserom.nds", 0x1911304, 0x1930
.incbin "baserom.nds", 0x1912C34, 0x1930
.incbin "baserom.nds", 0x1914564, 0x1930
.incbin "baserom.nds", 0x1915E94, 0x1930
.incbin "baserom.nds", 0x19177C4, 0x48
.incbin "baserom.nds", 0x191780C, 0x48
.incbin "baserom.nds", 0x1917854, 0x1930
.incbin "baserom.nds", 0x1919184, 0x1930
.incbin "baserom.nds", 0x191AAB4, 0x1930
.incbin "baserom.nds", 0x191C3E4, 0x1930
.incbin "baserom.nds", 0x191DD14, 0x48
.incbin "baserom.nds", 0x191DD5C, 0x48
.incbin "baserom.nds", 0x191DDA4, 0x1930
.incbin "baserom.nds", 0x191F6D4, 0x1930
.incbin "baserom.nds", 0x1921004, 0x1930
.incbin "baserom.nds", 0x1922934, 0x1930
.incbin "baserom.nds", 0x1924264, 0x48
.incbin "baserom.nds", 0x19242AC, 0x48
.incbin "baserom.nds", 0x19242F4, 0x1930
.incbin "baserom.nds", 0x1925C24, 0x1930
.incbin "baserom.nds", 0x1927554, 0x1930
.incbin "baserom.nds", 0x1928E84, 0x1930
.incbin "baserom.nds", 0x192A7B4, 0x48
.incbin "baserom.nds", 0x192A7FC, 0x48
.incbin "baserom.nds", 0x192A844, 0x1930
.incbin "baserom.nds", 0x192C174, 0x1930
.incbin "baserom.nds", 0x192DAA4, 0x1930
.incbin "baserom.nds", 0x192F3D4, 0x1930
.incbin "baserom.nds", 0x1930D04, 0x48
.incbin "baserom.nds", 0x1930D4C, 0x48
.incbin "baserom.nds", 0x1930D94, 0x1930
.incbin "baserom.nds", 0x19326C4, 0x1930
.incbin "baserom.nds", 0x1933FF4, 0x1930
.incbin "baserom.nds", 0x1935924, 0x1930
.incbin "baserom.nds", 0x1937254, 0x48
.incbin "baserom.nds", 0x193729C, 0x48
.incbin "baserom.nds", 0x19372E4, 0x1930
.incbin "baserom.nds", 0x1938C14, 0x1930
.incbin "baserom.nds", 0x193A544, 0x1930
.incbin "baserom.nds", 0x193BE74, 0x1930
.incbin "baserom.nds", 0x193D7A4, 0x48
.incbin "baserom.nds", 0x193D7EC, 0x48
.incbin "baserom.nds", 0x193D834, 0x1930
.incbin "baserom.nds", 0x193F164, 0x1930
.incbin "baserom.nds", 0x1940A94, 0x1930
.incbin "baserom.nds", 0x19423C4, 0x1930
.incbin "baserom.nds", 0x1943CF4, 0x48
.incbin "baserom.nds", 0x1943D3C, 0x48
.incbin "baserom.nds", 0x1943D84, 0x1930
.incbin "baserom.nds", 0x19456B4, 0x1930
.incbin "baserom.nds", 0x1946FE4, 0x1930
.incbin "baserom.nds", 0x1948914, 0x1930
.incbin "baserom.nds", 0x194A244, 0x48
.incbin "baserom.nds", 0x194A28C, 0x48
.incbin "baserom.nds", 0x194A2D4, 0x1930
.incbin "baserom.nds", 0x194BC04, 0x1930
.incbin "baserom.nds", 0x194D534, 0x1930
.incbin "baserom.nds", 0x194EE64, 0x1930
.incbin "baserom.nds", 0x1950794, 0x48
.incbin "baserom.nds", 0x19507DC, 0x48
.incbin "baserom.nds", 0x1950824, 0x1930
.incbin "baserom.nds", 0x1952154, 0x1930
.incbin "baserom.nds", 0x1953A84, 0x1930
.incbin "baserom.nds", 0x19553B4, 0x1930
.incbin "baserom.nds", 0x1956CE4, 0x48
.incbin "baserom.nds", 0x1956D2C, 0x48
.incbin "baserom.nds", 0x1956D74, 0x1930
.incbin "baserom.nds", 0x19586A4, 0x1930
.incbin "baserom.nds", 0x1959FD4, 0x1930
.incbin "baserom.nds", 0x195B904, 0x1930
.incbin "baserom.nds", 0x195D234, 0x48
.incbin "baserom.nds", 0x195D27C, 0x48
.incbin "baserom.nds", 0x195D2C4, 0x1930
.incbin "baserom.nds", 0x195EBF4, 0x1930
.incbin "baserom.nds", 0x1960524, 0x1930
.incbin "baserom.nds", 0x1961E54, 0x1930
.incbin "baserom.nds", 0x1963784, 0x48
.incbin "baserom.nds", 0x19637CC, 0x48
.incbin "baserom.nds", 0x1963814, 0x1930
.incbin "baserom.nds", 0x1965144, 0x1930
.incbin "baserom.nds", 0x1966A74, 0x1930
.incbin "baserom.nds", 0x19683A4, 0x1930
.incbin "baserom.nds", 0x1969CD4, 0x48
.incbin "baserom.nds", 0x1969D1C, 0x48
.incbin "baserom.nds", 0x1969D64, 0x1930
.incbin "baserom.nds", 0x196B694, 0x1930
.incbin "baserom.nds", 0x196CFC4, 0x1930
.incbin "baserom.nds", 0x196E8F4, 0x1930
.incbin "baserom.nds", 0x1970224, 0x48
.incbin "baserom.nds", 0x197026C, 0x48
.incbin "baserom.nds", 0x19702B4, 0x1930
.incbin "baserom.nds", 0x1971BE4, 0x1930
.incbin "baserom.nds", 0x1973514, 0x1930
.incbin "baserom.nds", 0x1974E44, 0x1930
.incbin "baserom.nds", 0x1976774, 0x48
.incbin "baserom.nds", 0x19767BC, 0x48
.incbin "baserom.nds", 0x1976804, 0x1930
.incbin "baserom.nds", 0x1978134, 0x1930
.incbin "baserom.nds", 0x1979A64, 0x1930
.incbin "baserom.nds", 0x197B394, 0x1930
.incbin "baserom.nds", 0x197CCC4, 0x48
.incbin "baserom.nds", 0x197CD0C, 0x48
.incbin "baserom.nds", 0x197CD54, 0x1930
.incbin "baserom.nds", 0x197E684, 0x1930
.incbin "baserom.nds", 0x197FFB4, 0x1930
.incbin "baserom.nds", 0x19818E4, 0x1930
.incbin "baserom.nds", 0x1983214, 0x48
.incbin "baserom.nds", 0x198325C, 0x48
.incbin "baserom.nds", 0x19832A4, 0x1930
.incbin "baserom.nds", 0x1984BD4, 0x1930
.incbin "baserom.nds", 0x1986504, 0x1930
.incbin "baserom.nds", 0x1987E34, 0x1930
.incbin "baserom.nds", 0x1989764, 0x48
.incbin "baserom.nds", 0x19897AC, 0x48
.incbin "baserom.nds", 0x19897F4, 0x1930
.incbin "baserom.nds", 0x198B124, 0x1930
.incbin "baserom.nds", 0x198CA54, 0x1930
.incbin "baserom.nds", 0x198E384, 0x1930
.incbin "baserom.nds", 0x198FCB4, 0x48
.incbin "baserom.nds", 0x198FCFC, 0x48
.incbin "baserom.nds", 0x198FD44, 0x1930
.incbin "baserom.nds", 0x1991674, 0x1930
.incbin "baserom.nds", 0x1992FA4, 0x1930
.incbin "baserom.nds", 0x19948D4, 0x1930
.incbin "baserom.nds", 0x1996204, 0x48
.incbin "baserom.nds", 0x199624C, 0x48
.incbin "baserom.nds", 0x1996294, 0x1930
.incbin "baserom.nds", 0x1997BC4, 0x1930
.incbin "baserom.nds", 0x19994F4, 0x1930
.incbin "baserom.nds", 0x199AE24, 0x1930
.incbin "baserom.nds", 0x199C754, 0x48
.incbin "baserom.nds", 0x199C79C, 0x48
.incbin "baserom.nds", 0x199C7E4, 0x1930
.incbin "baserom.nds", 0x199E114, 0x1930
.incbin "baserom.nds", 0x199FA44, 0x1930
.incbin "baserom.nds", 0x19A1374, 0x1930
.incbin "baserom.nds", 0x19A2CA4, 0x48
.incbin "baserom.nds", 0x19A2CEC, 0x48
.incbin "baserom.nds", 0x19A2D34, 0x1930
.incbin "baserom.nds", 0x19A4664, 0x1930
.incbin "baserom.nds", 0x19A5F94, 0x1930
.incbin "baserom.nds", 0x19A78C4, 0x1930
.incbin "baserom.nds", 0x19A91F4, 0x48
.incbin "baserom.nds", 0x19A923C, 0x48
.incbin "baserom.nds", 0x19A9284, 0x1930
.incbin "baserom.nds", 0x19AABB4, 0x1930
.incbin "baserom.nds", 0x19AC4E4, 0x1930
.incbin "baserom.nds", 0x19ADE14, 0x1930
.incbin "baserom.nds", 0x19AF744, 0x48
.incbin "baserom.nds", 0x19AF78C, 0x48
.incbin "baserom.nds", 0x19AF7D4, 0x1930
.incbin "baserom.nds", 0x19B1104, 0x1930
.incbin "baserom.nds", 0x19B2A34, 0x1930
.incbin "baserom.nds", 0x19B4364, 0x1930
.incbin "baserom.nds", 0x19B5C94, 0x48
.incbin "baserom.nds", 0x19B5CDC, 0x48
.incbin "baserom.nds", 0x19B5D24, 0x1930
.incbin "baserom.nds", 0x19B7654, 0x0
.incbin "baserom.nds", 0x19B7654, 0x1930
.incbin "baserom.nds", 0x19B8F84, 0x0
.incbin "baserom.nds", 0x19B8F84, 0x48
.incbin "baserom.nds", 0x19B8FCC, 0x48
.incbin "baserom.nds", 0x19B9014, 0x0
.incbin "baserom.nds", 0x19B9014, 0x1930
.incbin "baserom.nds", 0x19BA944, 0x0
.incbin "baserom.nds", 0x19BA944, 0x1930
.incbin "baserom.nds", 0x19BC274, 0x48
.incbin "baserom.nds", 0x19BC2BC, 0x48
.incbin "baserom.nds", 0x19BC304, 0x1930
.incbin "baserom.nds", 0x19BDC34, 0x1930
.incbin "baserom.nds", 0x19BF564, 0x1930
.incbin "baserom.nds", 0x19C0E94, 0x1930
.incbin "baserom.nds", 0x19C27C4, 0x48
.incbin "baserom.nds", 0x19C280C, 0x48
.incbin "baserom.nds", 0x19C2854, 0x1930
.incbin "baserom.nds", 0x19C4184, 0x0
.incbin "baserom.nds", 0x19C4184, 0x1930
.incbin "baserom.nds", 0x19C5AB4, 0x0
.incbin "baserom.nds", 0x19C5AB4, 0x48
.incbin "baserom.nds", 0x19C5AFC, 0x48
.incbin "baserom.nds", 0x19C5B44, 0x1930
.incbin "baserom.nds", 0x19C7474, 0x1930
.incbin "baserom.nds", 0x19C8DA4, 0x1930
.incbin "baserom.nds", 0x19CA6D4, 0x1930
.incbin "baserom.nds", 0x19CC004, 0x48
.incbin "baserom.nds", 0x19CC04C, 0x48
.incbin "baserom.nds", 0x19CC094, 0x1930
.incbin "baserom.nds", 0x19CD9C4, 0x1930
.incbin "baserom.nds", 0x19CF2F4, 0x1930
.incbin "baserom.nds", 0x19D0C24, 0x1930
.incbin "baserom.nds", 0x19D2554, 0x48
.incbin "baserom.nds", 0x19D259C, 0x48
.incbin "baserom.nds", 0x19D25E4, 0x1930
.incbin "baserom.nds", 0x19D3F14, 0x1930
.incbin "baserom.nds", 0x19D5844, 0x1930
.incbin "baserom.nds", 0x19D7174, 0x1930
.incbin "baserom.nds", 0x19D8AA4, 0x48
.incbin "baserom.nds", 0x19D8AEC, 0x48
.incbin "baserom.nds", 0x19D8B34, 0x1930
.incbin "baserom.nds", 0x19DA464, 0x1930
.incbin "baserom.nds", 0x19DBD94, 0x1930
.incbin "baserom.nds", 0x19DD6C4, 0x1930
.incbin "baserom.nds", 0x19DEFF4, 0x48
.incbin "baserom.nds", 0x19DF03C, 0x48
.incbin "baserom.nds", 0x19DF084, 0x1930
.incbin "baserom.nds", 0x19E09B4, 0x1930
.incbin "baserom.nds", 0x19E22E4, 0x1930
.incbin "baserom.nds", 0x19E3C14, 0x1930
.incbin "baserom.nds", 0x19E5544, 0x48
.incbin "baserom.nds", 0x19E558C, 0x48
.incbin "baserom.nds", 0x19E55D4, 0x1930
.incbin "baserom.nds", 0x19E6F04, 0x1930
.incbin "baserom.nds", 0x19E8834, 0x1930
.incbin "baserom.nds", 0x19EA164, 0x1930
.incbin "baserom.nds", 0x19EBA94, 0x48
.incbin "baserom.nds", 0x19EBADC, 0x48
.incbin "baserom.nds", 0x19EBB24, 0x1930
.incbin "baserom.nds", 0x19ED454, 0x1930
.incbin "baserom.nds", 0x19EED84, 0x1930
.incbin "baserom.nds", 0x19F06B4, 0x1930
.incbin "baserom.nds", 0x19F1FE4, 0x48
.incbin "baserom.nds", 0x19F202C, 0x48
.incbin "baserom.nds", 0x19F2074, 0x1930
.incbin "baserom.nds", 0x19F39A4, 0x1930
.incbin "baserom.nds", 0x19F52D4, 0x1930
.incbin "baserom.nds", 0x19F6C04, 0x1930
.incbin "baserom.nds", 0x19F8534, 0x48
.incbin "baserom.nds", 0x19F857C, 0x48
.incbin "baserom.nds", 0x19F85C4, 0x1930
.incbin "baserom.nds", 0x19F9EF4, 0x1930
.incbin "baserom.nds", 0x19FB824, 0x1930
.incbin "baserom.nds", 0x19FD154, 0x1930
.incbin "baserom.nds", 0x19FEA84, 0x48
.incbin "baserom.nds", 0x19FEACC, 0x48
.incbin "baserom.nds", 0x19FEB14, 0x1930
.incbin "baserom.nds", 0x1A00444, 0x1930
.incbin "baserom.nds", 0x1A01D74, 0x1930
.incbin "baserom.nds", 0x1A036A4, 0x1930
.incbin "baserom.nds", 0x1A04FD4, 0x48
.incbin "baserom.nds", 0x1A0501C, 0x48
.incbin "baserom.nds", 0x1A05064, 0x1930
.incbin "baserom.nds", 0x1A06994, 0x1930
.incbin "baserom.nds", 0x1A082C4, 0x1930
.incbin "baserom.nds", 0x1A09BF4, 0x1930
.incbin "baserom.nds", 0x1A0B524, 0x48
.incbin "baserom.nds", 0x1A0B56C, 0x48
.incbin "baserom.nds", 0x1A0B5B4, 0x1930
.incbin "baserom.nds", 0x1A0CEE4, 0x1930
.incbin "baserom.nds", 0x1A0E814, 0x1930
.incbin "baserom.nds", 0x1A10144, 0x1930
.incbin "baserom.nds", 0x1A11A74, 0x48
.incbin "baserom.nds", 0x1A11ABC, 0x48
.incbin "baserom.nds", 0x1A11B04, 0x1930
.incbin "baserom.nds", 0x1A13434, 0x1930
.incbin "baserom.nds", 0x1A14D64, 0x1930
.incbin "baserom.nds", 0x1A16694, 0x1930
.incbin "baserom.nds", 0x1A17FC4, 0x48
.incbin "baserom.nds", 0x1A1800C, 0x48
.incbin "baserom.nds", 0x1A18054, 0x1930
.incbin "baserom.nds", 0x1A19984, 0x1930
.incbin "baserom.nds", 0x1A1B2B4, 0x1930
.incbin "baserom.nds", 0x1A1CBE4, 0x1930
.incbin "baserom.nds", 0x1A1E514, 0x48
.incbin "baserom.nds", 0x1A1E55C, 0x48
.incbin "baserom.nds", 0x1A1E5A4, 0x1930
.incbin "baserom.nds", 0x1A1FED4, 0x1930
.incbin "baserom.nds", 0x1A21804, 0x1930
.incbin "baserom.nds", 0x1A23134, 0x1930
.incbin "baserom.nds", 0x1A24A64, 0x48
.incbin "baserom.nds", 0x1A24AAC, 0x48
.incbin "baserom.nds", 0x1A24AF4, 0x1930
.incbin "baserom.nds", 0x1A26424, 0x1930
.incbin "baserom.nds", 0x1A27D54, 0x1930
.incbin "baserom.nds", 0x1A29684, 0x1930
.incbin "baserom.nds", 0x1A2AFB4, 0x48
.incbin "baserom.nds", 0x1A2AFFC, 0x48
.incbin "baserom.nds", 0x1A2B044, 0x1930
.incbin "baserom.nds", 0x1A2C974, 0x1930
.incbin "baserom.nds", 0x1A2E2A4, 0x1930
.incbin "baserom.nds", 0x1A2FBD4, 0x1930
.incbin "baserom.nds", 0x1A31504, 0x48
.incbin "baserom.nds", 0x1A3154C, 0x48
.incbin "baserom.nds", 0x1A31594, 0x1930
.incbin "baserom.nds", 0x1A32EC4, 0x1930
.incbin "baserom.nds", 0x1A347F4, 0x1930
.incbin "baserom.nds", 0x1A36124, 0x1930
.incbin "baserom.nds", 0x1A37A54, 0x48
.incbin "baserom.nds", 0x1A37A9C, 0x48
.incbin "baserom.nds", 0x1A37AE4, 0x1930
.incbin "baserom.nds", 0x1A39414, 0x1930
.incbin "baserom.nds", 0x1A3AD44, 0x1930
.incbin "baserom.nds", 0x1A3C674, 0x1930
.incbin "baserom.nds", 0x1A3DFA4, 0x48
.incbin "baserom.nds", 0x1A3DFEC, 0x48
.incbin "baserom.nds", 0x1A3E034, 0x0
.incbin "baserom.nds", 0x1A3E034, 0x1930
.incbin "baserom.nds", 0x1A3F964, 0x0
.incbin "baserom.nds", 0x1A3F964, 0x1930
.incbin "baserom.nds", 0x1A41294, 0x48
.incbin "baserom.nds", 0x1A412DC, 0x48
.incbin "baserom.nds", 0x1A41324, 0x0
.incbin "baserom.nds", 0x1A41324, 0x1930
.incbin "baserom.nds", 0x1A42C54, 0x0
.incbin "baserom.nds", 0x1A42C54, 0x1930
.incbin "baserom.nds", 0x1A44584, 0x48
.incbin "baserom.nds", 0x1A445CC, 0x48
.incbin "baserom.nds", 0x1A44614, 0x1930
.incbin "baserom.nds", 0x1A45F44, 0x1930
.incbin "baserom.nds", 0x1A47874, 0x1930
.incbin "baserom.nds", 0x1A491A4, 0x1930
.incbin "baserom.nds", 0x1A4AAD4, 0x48
.incbin "baserom.nds", 0x1A4AB1C, 0x48
.incbin "baserom.nds", 0x1A4AB64, 0x1930
.incbin "baserom.nds", 0x1A4C494, 0x1930
.incbin "baserom.nds", 0x1A4DDC4, 0x1930
.incbin "baserom.nds", 0x1A4F6F4, 0x1930
.incbin "baserom.nds", 0x1A51024, 0x48
.incbin "baserom.nds", 0x1A5106C, 0x48
.incbin "baserom.nds", 0x1A510B4, 0x1930
.incbin "baserom.nds", 0x1A529E4, 0x0
.incbin "baserom.nds", 0x1A529E4, 0x1930
.incbin "baserom.nds", 0x1A54314, 0x0
.incbin "baserom.nds", 0x1A54314, 0x48
.incbin "baserom.nds", 0x1A5435C, 0x48
.incbin "baserom.nds", 0x1A543A4, 0x1930
.incbin "baserom.nds", 0x1A55CD4, 0x1930
.incbin "baserom.nds", 0x1A57604, 0x1930
.incbin "baserom.nds", 0x1A58F34, 0x1930
.incbin "baserom.nds", 0x1A5A864, 0x48
.incbin "baserom.nds", 0x1A5A8AC, 0x48
.incbin "baserom.nds", 0x1A5A8F4, 0x1930
.incbin "baserom.nds", 0x1A5C224, 0x1930
.incbin "baserom.nds", 0x1A5DB54, 0x1930
.incbin "baserom.nds", 0x1A5F484, 0x1930
.incbin "baserom.nds", 0x1A60DB4, 0x48
.incbin "baserom.nds", 0x1A60DFC, 0x48
.incbin "baserom.nds", 0x1A60E44, 0x1930
.incbin "baserom.nds", 0x1A62774, 0x1930
.incbin "baserom.nds", 0x1A640A4, 0x1930
.incbin "baserom.nds", 0x1A659D4, 0x1930
.incbin "baserom.nds", 0x1A67304, 0x48
.incbin "baserom.nds", 0x1A6734C, 0x48
.incbin "baserom.nds", 0x1A67394, 0x1930
.incbin "baserom.nds", 0x1A68CC4, 0x1930
.incbin "baserom.nds", 0x1A6A5F4, 0x1930
.incbin "baserom.nds", 0x1A6BF24, 0x1930
.incbin "baserom.nds", 0x1A6D854, 0x48
.incbin "baserom.nds", 0x1A6D89C, 0x48
.incbin "baserom.nds", 0x1A6D8E4, 0x1930
.incbin "baserom.nds", 0x1A6F214, 0x1930
.incbin "baserom.nds", 0x1A70B44, 0x1930
.incbin "baserom.nds", 0x1A72474, 0x1930
.incbin "baserom.nds", 0x1A73DA4, 0x48
.incbin "baserom.nds", 0x1A73DEC, 0x48
.incbin "baserom.nds", 0x1A73E34, 0x1930
.incbin "baserom.nds", 0x1A75764, 0x1930
.incbin "baserom.nds", 0x1A77094, 0x1930
.incbin "baserom.nds", 0x1A789C4, 0x1930
.incbin "baserom.nds", 0x1A7A2F4, 0x48
.incbin "baserom.nds", 0x1A7A33C, 0x48
.incbin "baserom.nds", 0x1A7A384, 0x1930
.incbin "baserom.nds", 0x1A7BCB4, 0x1930
.incbin "baserom.nds", 0x1A7D5E4, 0x1930
.incbin "baserom.nds", 0x1A7EF14, 0x1930
.incbin "baserom.nds", 0x1A80844, 0x48
.incbin "baserom.nds", 0x1A8088C, 0x48
.incbin "baserom.nds", 0x1A808D4, 0x1930
.incbin "baserom.nds", 0x1A82204, 0x1930
.incbin "baserom.nds", 0x1A83B34, 0x1930
.incbin "baserom.nds", 0x1A85464, 0x1930
.incbin "baserom.nds", 0x1A86D94, 0x48
.incbin "baserom.nds", 0x1A86DDC, 0x48
.incbin "baserom.nds", 0x1A86E24, 0x1930
.incbin "baserom.nds", 0x1A88754, 0x1930
.incbin "baserom.nds", 0x1A8A084, 0x1930
.incbin "baserom.nds", 0x1A8B9B4, 0x1930
.incbin "baserom.nds", 0x1A8D2E4, 0x48
.incbin "baserom.nds", 0x1A8D32C, 0x48
.incbin "baserom.nds", 0x1A8D374, 0x1930
.incbin "baserom.nds", 0x1A8ECA4, 0x1930
.incbin "baserom.nds", 0x1A905D4, 0x1930
.incbin "baserom.nds", 0x1A91F04, 0x1930
.incbin "baserom.nds", 0x1A93834, 0x48
.incbin "baserom.nds", 0x1A9387C, 0x48
.incbin "baserom.nds", 0x1A938C4, 0x1930
.incbin "baserom.nds", 0x1A951F4, 0x1930
.incbin "baserom.nds", 0x1A96B24, 0x1930
.incbin "baserom.nds", 0x1A98454, 0x1930
.incbin "baserom.nds", 0x1A99D84, 0x48
.incbin "baserom.nds", 0x1A99DCC, 0x48
.incbin "baserom.nds", 0x1A99E14, 0x1930
.incbin "baserom.nds", 0x1A9B744, 0x1930
.incbin "baserom.nds", 0x1A9D074, 0x1930
.incbin "baserom.nds", 0x1A9E9A4, 0x1930
.incbin "baserom.nds", 0x1AA02D4, 0x48
.incbin "baserom.nds", 0x1AA031C, 0x48
.incbin "baserom.nds", 0x1AA0364, 0x1930
.incbin "baserom.nds", 0x1AA1C94, 0x1930
.incbin "baserom.nds", 0x1AA35C4, 0x1930
.incbin "baserom.nds", 0x1AA4EF4, 0x1930
.incbin "baserom.nds", 0x1AA6824, 0x48
.incbin "baserom.nds", 0x1AA686C, 0x48
.incbin "baserom.nds", 0x1AA68B4, 0x1930
.incbin "baserom.nds", 0x1AA81E4, 0x1930
.incbin "baserom.nds", 0x1AA9B14, 0x1930
.incbin "baserom.nds", 0x1AAB444, 0x1930
.incbin "baserom.nds", 0x1AACD74, 0x48
.incbin "baserom.nds", 0x1AACDBC, 0x48
.incbin "baserom.nds", 0x1AACE04, 0x1930
.incbin "baserom.nds", 0x1AAE734, 0x1930
.incbin "baserom.nds", 0x1AB0064, 0x1930
.incbin "baserom.nds", 0x1AB1994, 0x1930
.incbin "baserom.nds", 0x1AB32C4, 0x48
.incbin "baserom.nds", 0x1AB330C, 0x48
.incbin "baserom.nds", 0x1AB3354, 0x1930
.incbin "baserom.nds", 0x1AB4C84, 0x1930
.incbin "baserom.nds", 0x1AB65B4, 0x1930
.incbin "baserom.nds", 0x1AB7EE4, 0x1930
.incbin "baserom.nds", 0x1AB9814, 0x48
.incbin "baserom.nds", 0x1AB985C, 0x48
.incbin "baserom.nds", 0x1AB98A4, 0x1930
.incbin "baserom.nds", 0x1ABB1D4, 0x1930
.incbin "baserom.nds", 0x1ABCB04, 0x1930
.incbin "baserom.nds", 0x1ABE434, 0x1930
.incbin "baserom.nds", 0x1ABFD64, 0x48
.incbin "baserom.nds", 0x1ABFDAC, 0x48
.incbin "baserom.nds", 0x1ABFDF4, 0x1930
.incbin "baserom.nds", 0x1AC1724, 0x1930
.incbin "baserom.nds", 0x1AC3054, 0x1930
.incbin "baserom.nds", 0x1AC4984, 0x1930
.incbin "baserom.nds", 0x1AC62B4, 0x48
.incbin "baserom.nds", 0x1AC62FC, 0x48
.incbin "baserom.nds", 0x1AC6344, 0x1930
.incbin "baserom.nds", 0x1AC7C74, 0x1930
.incbin "baserom.nds", 0x1AC95A4, 0x1930
.incbin "baserom.nds", 0x1ACAED4, 0x1930
.incbin "baserom.nds", 0x1ACC804, 0x48
.incbin "baserom.nds", 0x1ACC84C, 0x48
.incbin "baserom.nds", 0x1ACC894, 0x1930
.incbin "baserom.nds", 0x1ACE1C4, 0x1930
.incbin "baserom.nds", 0x1ACFAF4, 0x1930
.incbin "baserom.nds", 0x1AD1424, 0x1930
.incbin "baserom.nds", 0x1AD2D54, 0x48
.incbin "baserom.nds", 0x1AD2D9C, 0x48
.incbin "baserom.nds", 0x1AD2DE4, 0x1930
.incbin "baserom.nds", 0x1AD4714, 0x1930
.incbin "baserom.nds", 0x1AD6044, 0x1930
.incbin "baserom.nds", 0x1AD7974, 0x1930
.incbin "baserom.nds", 0x1AD92A4, 0x48
.incbin "baserom.nds", 0x1AD92EC, 0x48
.incbin "baserom.nds", 0x1AD9334, 0x0
.incbin "baserom.nds", 0x1AD9334, 0x1930
.incbin "baserom.nds", 0x1ADAC64, 0x0
.incbin "baserom.nds", 0x1ADAC64, 0x1930
.incbin "baserom.nds", 0x1ADC594, 0x48
.incbin "baserom.nds", 0x1ADC5DC, 0x48
.incbin "baserom.nds", 0x1ADC624, 0x1930
.incbin "baserom.nds", 0x1ADDF54, 0x1930
.incbin "baserom.nds", 0x1ADF884, 0x1930
.incbin "baserom.nds", 0x1AE11B4, 0x1930
.incbin "baserom.nds", 0x1AE2AE4, 0x48
.incbin "baserom.nds", 0x1AE2B2C, 0x48
.incbin "baserom.nds", 0x1AE2B74, 0x1930
.incbin "baserom.nds", 0x1AE44A4, 0x1930
.incbin "baserom.nds", 0x1AE5DD4, 0x1930
.incbin "baserom.nds", 0x1AE7704, 0x1930
.incbin "baserom.nds", 0x1AE9034, 0x48
.incbin "baserom.nds", 0x1AE907C, 0x48
.incbin "baserom.nds", 0x1AE90C4, 0x1930
.incbin "baserom.nds", 0x1AEA9F4, 0x1930
.incbin "baserom.nds", 0x1AEC324, 0x1930
.incbin "baserom.nds", 0x1AEDC54, 0x1930
.incbin "baserom.nds", 0x1AEF584, 0x48
.incbin "baserom.nds", 0x1AEF5CC, 0x48
.incbin "baserom.nds", 0x1AEF614, 0x1930
.incbin "baserom.nds", 0x1AF0F44, 0x1930
.incbin "baserom.nds", 0x1AF2874, 0x1930
.incbin "baserom.nds", 0x1AF41A4, 0x1930
.incbin "baserom.nds", 0x1AF5AD4, 0x48
.incbin "baserom.nds", 0x1AF5B1C, 0x48
.incbin "baserom.nds", 0x1AF5B64, 0x1930
.incbin "baserom.nds", 0x1AF7494, 0x1930
.incbin "baserom.nds", 0x1AF8DC4, 0x1930
.incbin "baserom.nds", 0x1AFA6F4, 0x1930
.incbin "baserom.nds", 0x1AFC024, 0x48
.incbin "baserom.nds", 0x1AFC06C, 0x48
.incbin "baserom.nds", 0x1AFC0B4, 0x1930
.incbin "baserom.nds", 0x1AFD9E4, 0x1930
.incbin "baserom.nds", 0x1AFF314, 0x1930
.incbin "baserom.nds", 0x1B00C44, 0x1930
.incbin "baserom.nds", 0x1B02574, 0x48
.incbin "baserom.nds", 0x1B025BC, 0x48
.incbin "baserom.nds", 0x1B02604, 0x1930
.incbin "baserom.nds", 0x1B03F34, 0x1930
.incbin "baserom.nds", 0x1B05864, 0x1930
.incbin "baserom.nds", 0x1B07194, 0x1930
.incbin "baserom.nds", 0x1B08AC4, 0x48
.incbin "baserom.nds", 0x1B08B0C, 0x48
.incbin "baserom.nds", 0x1B08B54, 0x1930
.incbin "baserom.nds", 0x1B0A484, 0x1930
.incbin "baserom.nds", 0x1B0BDB4, 0x1930
.incbin "baserom.nds", 0x1B0D6E4, 0x1930
.incbin "baserom.nds", 0x1B0F014, 0x48
.incbin "baserom.nds", 0x1B0F05C, 0x48
.incbin "baserom.nds", 0x1B0F0A4, 0x1930
.incbin "baserom.nds", 0x1B109D4, 0x1930
.incbin "baserom.nds", 0x1B12304, 0x1930
.incbin "baserom.nds", 0x1B13C34, 0x1930
.incbin "baserom.nds", 0x1B15564, 0x48
.incbin "baserom.nds", 0x1B155AC, 0x48
.incbin "baserom.nds", 0x1B155F4, 0x1930
.incbin "baserom.nds", 0x1B16F24, 0x1930
.incbin "baserom.nds", 0x1B18854, 0x1930
.incbin "baserom.nds", 0x1B1A184, 0x1930
.incbin "baserom.nds", 0x1B1BAB4, 0x48
.incbin "baserom.nds", 0x1B1BAFC, 0x48
.incbin "baserom.nds", 0x1B1BB44, 0x1930
.incbin "baserom.nds", 0x1B1D474, 0x1930
.incbin "baserom.nds", 0x1B1EDA4, 0x1930
.incbin "baserom.nds", 0x1B206D4, 0x1930
.incbin "baserom.nds", 0x1B22004, 0x48
.incbin "baserom.nds", 0x1B2204C, 0x48
.incbin "baserom.nds", 0x1B22094, 0x0
.incbin "baserom.nds", 0x1B22094, 0x1930
.incbin "baserom.nds", 0x1B239C4, 0x0
.incbin "baserom.nds", 0x1B239C4, 0x1930
.incbin "baserom.nds", 0x1B252F4, 0x48
.incbin "baserom.nds", 0x1B2533C, 0x48
.incbin "baserom.nds", 0x1B25384, 0x0
.incbin "baserom.nds", 0x1B25384, 0x1930
.incbin "baserom.nds", 0x1B26CB4, 0x0
.incbin "baserom.nds", 0x1B26CB4, 0x1930
.incbin "baserom.nds", 0x1B285E4, 0x48
.incbin "baserom.nds", 0x1B2862C, 0x48
.incbin "baserom.nds", 0x1B28674, 0x1930
.incbin "baserom.nds", 0x1B29FA4, 0x1930
.incbin "baserom.nds", 0x1B2B8D4, 0x1930
.incbin "baserom.nds", 0x1B2D204, 0x1930
.incbin "baserom.nds", 0x1B2EB34, 0x48
.incbin "baserom.nds", 0x1B2EB7C, 0x48
.incbin "baserom.nds", 0x1B2EBC4, 0x1930
.incbin "baserom.nds", 0x1B304F4, 0x1930
.incbin "baserom.nds", 0x1B31E24, 0x1930
.incbin "baserom.nds", 0x1B33754, 0x1930
.incbin "baserom.nds", 0x1B35084, 0x48
.incbin "baserom.nds", 0x1B350CC, 0x48
.incbin "baserom.nds", 0x1B35114, 0x1930
.incbin "baserom.nds", 0x1B36A44, 0x0
.incbin "baserom.nds", 0x1B36A44, 0x1930
.incbin "baserom.nds", 0x1B38374, 0x0
.incbin "baserom.nds", 0x1B38374, 0x48
.incbin "baserom.nds", 0x1B383BC, 0x48
.incbin "baserom.nds", 0x1B38404, 0x0
.incbin "baserom.nds", 0x1B38404, 0x1930
.incbin "baserom.nds", 0x1B39D34, 0x0
.incbin "baserom.nds", 0x1B39D34, 0x1930
.incbin "baserom.nds", 0x1B3B664, 0x48
.incbin "baserom.nds", 0x1B3B6AC, 0x48
.incbin "baserom.nds", 0x1B3B6F4, 0x0
.incbin "baserom.nds", 0x1B3B6F4, 0x1930
.incbin "baserom.nds", 0x1B3D024, 0x0
.incbin "baserom.nds", 0x1B3D024, 0x1930
.incbin "baserom.nds", 0x1B3E954, 0x48
.incbin "baserom.nds", 0x1B3E99C, 0x48
.incbin "baserom.nds", 0x1B3E9E4, 0x0
.incbin "baserom.nds", 0x1B3E9E4, 0x1930
.incbin "baserom.nds", 0x1B40314, 0x0
.incbin "baserom.nds", 0x1B40314, 0x1930
.incbin "baserom.nds", 0x1B41C44, 0x48
.incbin "baserom.nds", 0x1B41C8C, 0x48
.incbin "baserom.nds", 0x1B41CD4, 0x0
.incbin "baserom.nds", 0x1B41CD4, 0x1930
.incbin "baserom.nds", 0x1B43604, 0x0
.incbin "baserom.nds", 0x1B43604, 0x1930
.incbin "baserom.nds", 0x1B44F34, 0x48
.incbin "baserom.nds", 0x1B44F7C, 0x48
.incbin "baserom.nds", 0x1B44FC4, 0x0
.incbin "baserom.nds", 0x1B44FC4, 0x1930
.incbin "baserom.nds", 0x1B468F4, 0x0
.incbin "baserom.nds", 0x1B468F4, 0x1930
.incbin "baserom.nds", 0x1B48224, 0x48
.incbin "baserom.nds", 0x1B4826C, 0x48
.incbin "baserom.nds", 0x1B482B4, 0x0
.incbin "baserom.nds", 0x1B482B4, 0x1930
.incbin "baserom.nds", 0x1B49BE4, 0x0
.incbin "baserom.nds", 0x1B49BE4, 0x1930
.incbin "baserom.nds", 0x1B4B514, 0x48
.incbin "baserom.nds", 0x1B4B55C, 0x48
.incbin "baserom.nds", 0x1B4B5A4, 0x1930
.incbin "baserom.nds", 0x1B4CED4, 0x1930
.incbin "baserom.nds", 0x1B4E804, 0x1930
.incbin "baserom.nds", 0x1B50134, 0x1930
.incbin "baserom.nds", 0x1B51A64, 0x48
.incbin "baserom.nds", 0x1B51AAC, 0x48
.incbin "baserom.nds", 0x1B51AF4, 0x0
.incbin "baserom.nds", 0x1B51AF4, 0x1930
.incbin "baserom.nds", 0x1B53424, 0x0
.incbin "baserom.nds", 0x1B53424, 0x1930
.incbin "baserom.nds", 0x1B54D54, 0x48
.incbin "baserom.nds", 0x1B54D9C, 0x48
.incbin "baserom.nds", 0x1B54DE4, 0x0
.incbin "baserom.nds", 0x1B54DE4, 0x1930
.incbin "baserom.nds", 0x1B56714, 0x0
.incbin "baserom.nds", 0x1B56714, 0x1930
.incbin "baserom.nds", 0x1B58044, 0x48
.incbin "baserom.nds", 0x1B5808C, 0x48
.incbin "baserom.nds", 0x1B580D4, 0x1930
.incbin "baserom.nds", 0x1B59A04, 0x0
.incbin "baserom.nds", 0x1B59A04, 0x1930
.incbin "baserom.nds", 0x1B5B334, 0x0
.incbin "baserom.nds", 0x1B5B334, 0x48
.incbin "baserom.nds", 0x1B5B37C, 0x48
.incbin "baserom.nds", 0x1B5B3C4, 0x0
.incbin "baserom.nds", 0x1B5B3C4, 0x1930
.incbin "baserom.nds", 0x1B5CCF4, 0x0
.incbin "baserom.nds", 0x1B5CCF4, 0x1930
.incbin "baserom.nds", 0x1B5E624, 0x48
.incbin "baserom.nds", 0x1B5E66C, 0x48
.incbin "baserom.nds", 0x1B5E6B4, 0x0
.incbin "baserom.nds", 0x1B5E6B4, 0x1930
.incbin "baserom.nds", 0x1B5FFE4, 0x0
.incbin "baserom.nds", 0x1B5FFE4, 0x1930
.incbin "baserom.nds", 0x1B61914, 0x48
.incbin "baserom.nds", 0x1B6195C, 0x48
.incbin "baserom.nds", 0x1B619A4, 0x0
.incbin "baserom.nds", 0x1B619A4, 0x1930
.incbin "baserom.nds", 0x1B632D4, 0x0
.incbin "baserom.nds", 0x1B632D4, 0x1930
.incbin "baserom.nds", 0x1B64C04, 0x48
.incbin "baserom.nds", 0x1B64C4C, 0x48
.incbin "baserom.nds", 0x1B64C94, 0x0
.incbin "baserom.nds", 0x1B64C94, 0x1930
.incbin "baserom.nds", 0x1B665C4, 0x0
.incbin "baserom.nds", 0x1B665C4, 0x1930
.incbin "baserom.nds", 0x1B67EF4, 0x48
.incbin "baserom.nds", 0x1B67F3C, 0x48
.incbin "baserom.nds", 0x1B67F84, 0x0
.incbin "baserom.nds", 0x1B67F84, 0x1930
.incbin "baserom.nds", 0x1B698B4, 0x0
.incbin "baserom.nds", 0x1B698B4, 0x1930
.incbin "baserom.nds", 0x1B6B1E4, 0x48
.incbin "baserom.nds", 0x1B6B22C, 0x48
|