summaryrefslogtreecommitdiff
path: root/data/map/map_headers.s
blob: 32a60914595d4d11549e4e7fa171f698fb723e24 (plain)
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
	.include "asm/macros.inc"
	.include "constants/constants.inc"

	.section .rodata
	.align 2

	.include "map_offsets.inc"

gAreaRoomMap_MinishWoods_0:: @ 081032DC
	map_bottom offset_gAreaRoomMap_MinishWoods_Main_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_MinishWoods_Main_top, 0x1F02, 1, 1

gAreaRoomMaps_MinishWoods:: @ 081032F4
	.4byte gAreaRoomMap_MinishWoods_0

gAreaRoomMap_LakeHylia_0:: @ 081032F8
	map_bottom offset_gAreaRoomMap_LakeHylia_Main_bottom, 0x1680, 1
	map_top offset_gAreaRoomMap_LakeHylia_Main_top, 0x1680, 1, 1

gAreaRoomMap_LakeHylia_1:: @ 08103310
	map_bottom offset_gAreaRoomMap_LakeHylia_Beanstalk_bottom, 0x5E8, 1
	map_top offset_gAreaRoomMap_LakeHylia_Beanstalk_top, 0x5E8, 1, 1

gAreaRoomMaps_LakeHylia:: @ 08103328
	.4byte gAreaRoomMap_LakeHylia_0
	.4byte gAreaRoomMap_LakeHylia_1

gAreaRoomMap_CastorWilds_0:: @ 08103330
	map_bottom offset_gAreaRoomMap_CastorWilds_Main_bottom, 0x1D88, 1
	map_top offset_gAreaRoomMap_CastorWilds_Main_top, 0x1D88, 1, 1

gAreaRoomMaps_CastorWilds:: @ 08103348
	.4byte gAreaRoomMap_CastorWilds_0

gAreaRoomMap_Ruins_0:: @ 0810334C
	map_bottom offset_gAreaRoomMap_Ruins_Entrance_bottom, 0x3DE, 1
	map_top offset_gAreaRoomMap_Ruins_Entrance_top, 0x3DE, 1, 1

gAreaRoomMap_Ruins_1:: @ 08103364
	map_bottom offset_gAreaRoomMap_Ruins_Beanstalk_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_Ruins_Beanstalk_top, 0x186, 1, 1

gAreaRoomMap_Ruins_2:: @ 0810337C
	map_bottom offset_gAreaRoomMap_Ruins_Tektites_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Ruins_Tektites_top, 0x12C, 1, 1

gAreaRoomMap_Ruins_3:: @ 08103394
	map_bottom offset_gAreaRoomMap_Ruins_LadderToTektites_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Ruins_LadderToTektites_top, 0x12C, 1, 1

gAreaRoomMap_Ruins_4:: @ 081033AC
	map_bottom offset_gAreaRoomMap_Ruins_FortressEntrance_bottom, 0x420, 1
	map_top offset_gAreaRoomMap_Ruins_FortressEntrance_top, 0x420, 1, 1

gAreaRoomMap_Ruins_5:: @ 081033C4
	map_bottom offset_gAreaRoomMap_Ruins_BelowFortressEntrance_bottom, 0x462, 1
	map_top offset_gAreaRoomMap_Ruins_BelowFortressEntrance_top, 0x462, 1, 1

gAreaRoomMaps_Ruins:: @ 081033DC
	.4byte gAreaRoomMap_Ruins_0
	.4byte gAreaRoomMap_Ruins_1
	.4byte gAreaRoomMap_Ruins_2
	.4byte gAreaRoomMap_Ruins_3
	.4byte gAreaRoomMap_Ruins_4
	.4byte gAreaRoomMap_Ruins_5

gAreaRoomMap_HyruleTown_0:: @ 081033F4
	map_bottom offset_gAreaRoomMap_HyruleTown_Main_bottom, 0x1D88, 1
	map_top offset_gAreaRoomMap_HyruleTown_Main_top, 0x1D88, 1, 1

gAreaRoomMaps_HyruleTown:: @ 0810340C
	.4byte gAreaRoomMap_HyruleTown_0

gAreaRoomMap_FestivalTown_0:: @ 08103410
	map_bottom offset_gAreaRoomMap_FestivalTown_Main_bottom, 0xBB8, 1
	map_top offset_gAreaRoomMap_FestivalTown_Main_top, 0xBB8, 1, 1

gAreaRoomMaps_FestivalTown:: @ 08103428
	.4byte gAreaRoomMap_FestivalTown_0

gAreaRoomMap_MtCrenel_0:: @ 0810342C
	map_bottom offset_gAreaRoomMap_MtCrenel_Top_bottom, 0x6E4, 1
	map_top offset_gAreaRoomMap_MtCrenel_Top_top, 0x6E4, 1, 1

gAreaRoomMap_MtCrenel_1:: @ 08103444
	map_bottom offset_gAreaRoomMap_MtCrenel_WallClimb_bottom, 0x720, 1
	map_top offset_gAreaRoomMap_MtCrenel_WallClimb_top, 0x720, 1, 1

gAreaRoomMap_MtCrenel_2:: @ 0810345C
	map_bottom offset_gAreaRoomMap_MtCrenel_CavernOfFlamesEntrance_bottom, 0xB94, 1
	map_top offset_gAreaRoomMap_MtCrenel_CavernOfFlamesEntrance_top, 0xB94, 1, 1

gAreaRoomMap_MtCrenel_3:: @ 08103474
	map_bottom offset_gAreaRoomMap_MtCrenel_Center_bottom, 0xB52, 1
	map_top offset_gAreaRoomMap_MtCrenel_Center_top, 0xB52, 1, 1

gAreaRoomMap_MtCrenel_4:: @ 0810348C
	map_bottom offset_gAreaRoomMap_MtCrenel_Entrance_bottom, 0xEC4, 1
	map_top offset_gAreaRoomMap_MtCrenel_Entrance_top, 0xEC4, 1, 1

gAreaRoomMaps_MtCrenel:: @ 081034A4
	.4byte gAreaRoomMap_MtCrenel_0
	.4byte gAreaRoomMap_MtCrenel_1
	.4byte gAreaRoomMap_MtCrenel_2
	.4byte gAreaRoomMap_MtCrenel_3
	.4byte gAreaRoomMap_MtCrenel_4

gAreaRoomMap_HyruleField_0:: @ 081034B8
	map_bottom offset_gAreaRoomMap_HyruleField_WesternWoodsSouth_bottom, 0x30C, 1
	map_top offset_gAreaRoomMap_HyruleField_WesternWoodsSouth_top, 0x30C, 1, 1

gAreaRoomMap_HyruleField_1:: @ 081034D0
	tileSet_tiles offset_gAreaTileSet_HyruleField_0_0, 0x6000000, 0x4000, 1
	tileSet_tiles offset_gAreaTileSet_HyruleField_0_2, 0x6008000, 0x4000, 1
	.4byte 0x80000010, 0x0, 0x0
	map_bottom offset_gAreaRoomMap_HyruleField_SouthHyruleField_bottom, 0x152A, 1
	map_top offset_gAreaRoomMap_HyruleField_SouthHyruleField_top, 0x152A, 1, 1

gAreaRoomMap_HyruleField_2:: @ 0810350C
	map_bottom offset_gAreaRoomMap_HyruleField_EasternHillsSouth_bottom, 0x30C, 1
	map_top offset_gAreaRoomMap_HyruleField_EasternHillsSouth_top, 0x30C, 1, 1

gAreaRoomMap_HyruleField_3:: @ 08103524
	tileSet_tiles offset_gAreaTileSet_HyruleField_0_0, 0x6000000, 0x4000, 1
	tileSet_tiles offset_gAreaTileSet_HyruleField_0_2, 0x6008000, 0x4000, 1
	.4byte 0x80000010, 0x0, 0x0
	map_bottom offset_gAreaRoomMap_HyruleField_EasternHillsCenter_bottom, 0x3C0, 1
	map_top offset_gAreaRoomMap_HyruleField_EasternHillsCenter_top, 0x3C0, 1, 1

gAreaRoomMap_HyruleField_4:: @ 08103560
	tileSet_tiles offset_gAreaTileSet_HyruleField_1_0, 0x6000000, 0x4000, 1
	tileSet_tiles offset_gAreaTileSet_HyruleField_1_2, 0x6008000, 0x4000, 1
	.4byte 0x80000043, 0x0, 0x0
	map_bottom offset_gAreaRoomMap_HyruleField_EasternHillsNorth_bottom, 0x7F8, 1
	map_top offset_gAreaRoomMap_HyruleField_EasternHillsNorth_top, 0x7F8, 1, 1

gAreaRoomMap_HyruleField_5:: @ 0810359C
	tileSet_tiles offset_gAreaTileSet_HyruleField_1_0, 0x6000000, 0x4000, 1
	tileSet_tiles offset_gAreaTileSet_HyruleField_1_2, 0x6008000, 0x4000, 1
	.4byte 0x80000043, 0x0, 0x0
	map_bottom offset_gAreaRoomMap_HyruleField_LonLonRanch_bottom, 0x1518, 1
	map_top offset_gAreaRoomMap_HyruleField_LonLonRanch_top, 0x1518, 1, 1

gAreaRoomMap_HyruleField_6:: @ 081035D8
	tileSet_tiles offset_gAreaTileSet_HyruleField_2_0, 0x6000000, 0x4000, 1
	tileSet_tiles offset_gAreaTileSet_HyruleField_2_2, 0x6008000, 0x4000, 1
	.4byte 0x8000002E, 0x0, 0x0
	map_bottom offset_gAreaRoomMap_HyruleField_NorthHyruleField_bottom, 0x189C, 1
	map_top offset_gAreaRoomMap_HyruleField_NorthHyruleField_top, 0x189C, 1, 1

gAreaRoomMap_HyruleField_7:: @ 08103614
	tileSet_tiles offset_gAreaTileSet_HyruleField_0_0, 0x6000000, 0x4000, 1
	tileSet_tiles offset_gAreaTileSet_HyruleField_0_2, 0x6008000, 0x4000, 1
	.4byte 0x80000010, 0x0, 0x0
	map_bottom offset_gAreaRoomMap_HyruleField_TrilbyHighlands_bottom, 0xE10, 1
	map_top offset_gAreaRoomMap_HyruleField_TrilbyHighlands_top, 0xE10, 1, 1

gAreaRoomMap_HyruleField_8:: @ 08103650
	map_bottom offset_gAreaRoomMap_HyruleField_WesternWoodsNorth_bottom, 0x960, 1
	map_top offset_gAreaRoomMap_HyruleField_WesternWoodsNorth_top, 0x960, 1, 1

gAreaRoomMap_HyruleField_9:: @ 08103668
	map_bottom offset_gAreaRoomMap_HyruleField_WesternWoodsCenter_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_HyruleField_WesternWoodsCenter_top, 0x258, 1, 1

gAreaRoomMaps_HyruleField:: @ 08103680
	.4byte gAreaRoomMap_HyruleField_0
	.4byte gAreaRoomMap_HyruleField_1
	.4byte gAreaRoomMap_HyruleField_2
	.4byte gAreaRoomMap_HyruleField_3
	.4byte gAreaRoomMap_HyruleField_4
	.4byte gAreaRoomMap_HyruleField_5
	.4byte gAreaRoomMap_HyruleField_6
	.4byte gAreaRoomMap_HyruleField_7
	.4byte gAreaRoomMap_HyruleField_8
	.4byte gAreaRoomMap_HyruleField_9

gAreaRoomMap_CastleGarden_0:: @ 081036A8
	map_bottom offset_gAreaRoomMap_CastleGarden_Main_bottom, 0x103E, 1
	map_top offset_gAreaRoomMap_CastleGarden_Main_top, 0x103E, 1, 1

gAreaRoomMaps_CastleGarden:: @ 081036C0
	.4byte gAreaRoomMap_CastleGarden_0

gAreaRoomMap_CloudTops_0:: @ 081036C4
	map_bottom offset_gAreaRoomMap_CloudTops_CloudTops_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_CloudTops_CloudTops_top, 0x1F02, 1, 1

gAreaRoomMap_CloudTops_1:: @ 081036DC
	map_bottom offset_gAreaRoomMap_CloudTops_CloudMiddles_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_CloudTops_CloudMiddles_top, 0x1F02, 1, 1

gAreaRoomMap_CloudTops_2:: @ 081036F4
	map_bottom offset_gAreaRoomMap_CloudTops_CloudBottoms_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_CloudTops_CloudBottoms_top, 0x1F02, 1, 1

gAreaRoomMaps_CloudTops:: @ 0810370C
	.4byte gAreaRoomMap_CloudTops_0
	.4byte gAreaRoomMap_CloudTops_1
	.4byte gAreaRoomMap_CloudTops_2

gAreaRoomMap_RoyalValley_0:: @ 08103718
	map_bottom offset_gAreaRoomMap_RoyalValley_Main_bottom, 0xEC4, 1
	map_top offset_gAreaRoomMap_RoyalValley_Main_top, 0xEC4, 1, 1

gAreaRoomMap_RoyalValley_1:: @ 08103730
	map_bottom offset_gAreaRoomMap_RoyalValley_ForestMaze_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_RoyalValley_ForestMaze_top, 0x12C, 1, 1

gAreaRoomMaps_RoyalValley:: @ 08103748
	.4byte gAreaRoomMap_RoyalValley_0
	.4byte gAreaRoomMap_RoyalValley_1

gAreaRoomMap_VeilFalls_0:: @ 08103750
	map_bottom offset_gAreaRoomMap_VeilFalls_Main_bottom, 0xEC4, 1
	map_top offset_gAreaRoomMap_VeilFalls_Main_top, 0xEC4, 1, 1

gAreaRoomMaps_VeilFalls:: @ 08103768
	.4byte gAreaRoomMap_VeilFalls_0

gAreaRoomMap_VeilFallsTop_0:: @ 0810376C
	map_bottom offset_gAreaRoomMap_VeilFallsTop_0_bottom, 0x2D0, 1
	map_top offset_gAreaRoomMap_VeilFallsTop_0_top, 0x2D0, 1, 1

gAreaRoomMaps_VeilFallsTop:: @ 08103784
	.4byte gAreaRoomMap_VeilFallsTop_0

gAreaRoomMap_Beanstalks_0:: @ 08103788
	map_bottom offset_gAreaRoomMap_Beanstalks_Crenel_bottom, 0x12C, 0, 1

gAreaRoomMap_Beanstalks_1:: @ 08103794
	map_bottom offset_gAreaRoomMap_Beanstalks_LakeHylia_bottom, 0x12C, 0, 1

gAreaRoomMap_Beanstalks_2:: @ 081037A0
	map_bottom offset_gAreaRoomMap_Beanstalks_Ruins_bottom, 0x12C, 0, 1

gAreaRoomMap_Beanstalks_3:: @ 081037AC
	map_bottom offset_gAreaRoomMap_Beanstalks_EasternHills_bottom, 0x12C, 0, 1

gAreaRoomMap_Beanstalks_4:: @ 081037B8
	map_bottom offset_gAreaRoomMap_Beanstalks_WesternWoods_bottom, 0x12C, 0, 1

gAreaRoomMap_Beanstalks_5:: @ 081037C4
	.4byte 0x80000000, gMapBottom+0x0004, 0x80002000
	map_top_special offset_gRoomMapping_Beanstalks_CrenelClimb_top, 0x800, 1, 1

gAreaRoomMaps_Beanstalks:: @ 081037DC
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_1
	.4byte gAreaRoomMap_Beanstalks_2
	.4byte gAreaRoomMap_Beanstalks_3
	.4byte gAreaRoomMap_Beanstalks_4
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_0
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5
	.4byte gAreaRoomMap_Beanstalks_5

gAreaRoomMap_CrenelCaves_0:: @ 0810385C
	map_bottom offset_gAreaRoomMap_CrenelCaves_BlockPushing_bottom, 0xA8C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_BlockPushing_top, 0xA8C, 1, 1

gAreaRoomMap_CrenelCaves_1:: @ 08103874
	map_bottom offset_gAreaRoomMap_CrenelCaves_PillarCave_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_CrenelCaves_PillarCave_top, 0x14A, 1, 1

gAreaRoomMap_CrenelCaves_2:: @ 0810388C
	map_bottom offset_gAreaRoomMap_CrenelCaves_BridgeSwitch_bottom, 0x3A2, 1
	map_top offset_gAreaRoomMap_CrenelCaves_BridgeSwitch_top, 0x3A2, 1, 1

gAreaRoomMap_CrenelCaves_3:: @ 081038A4
	map_bottom offset_gAreaRoomMap_CrenelCaves_ExitToMines_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_CrenelCaves_ExitToMines_top, 0x168, 1, 1

gAreaRoomMap_CrenelCaves_4:: @ 081038BC
	map_bottom offset_gAreaRoomMap_CrenelCaves_GripRing_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_GripRing_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_5:: @ 081038D4
	map_bottom offset_gAreaRoomMap_CrenelCaves_FairyFountain_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_FairyFountain_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_6:: @ 081038EC
	map_bottom offset_gAreaRoomMap_CrenelCaves_SpinyChuPuzzle_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_CrenelCaves_SpinyChuPuzzle_top, 0x168, 1, 1

gAreaRoomMap_CrenelCaves_7:: @ 08103904
	map_bottom offset_gAreaRoomMap_CrenelCaves_ChuchuPotChest_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_CrenelCaves_ChuchuPotChest_top, 0x14A, 1, 1

gAreaRoomMap_CrenelCaves_8:: @ 0810391C
	map_bottom offset_gAreaRoomMap_CrenelCaves_WaterHeartPiece_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_CrenelCaves_WaterHeartPiece_top, 0x258, 1, 1

gAreaRoomMap_CrenelCaves_9:: @ 08103934
	map_bottom offset_gAreaRoomMap_CrenelCaves_RupeeFairyFouintain_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_CrenelCaves_RupeeFairyFouintain_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_10:: @ 0810394C
	map_bottom offset_gAreaRoomMap_CrenelCaves_HelmasaurHallway_bottom, 0x2BC, 1
	map_top offset_gAreaRoomMap_CrenelCaves_HelmasaurHallway_top, 0x2BC, 1, 1

gAreaRoomMap_CrenelCaves_11:: @ 08103964
	map_bottom offset_gAreaRoomMap_CrenelCaves_MushroomKeese_bottom, 0x294, 1
	map_top offset_gAreaRoomMap_CrenelCaves_MushroomKeese_top, 0x294, 1, 1

gAreaRoomMap_CrenelCaves_12:: @ 0810397C
	map_bottom offset_gAreaRoomMap_CrenelCaves_LadderToSpringWater_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_LadderToSpringWater_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_13:: @ 08103994
	map_bottom offset_gAreaRoomMap_CrenelCaves_BombBusinessScrub_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_BombBusinessScrub_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_14:: @ 081039AC
	map_bottom offset_gAreaRoomMap_CrenelCaves_Hermit_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_Hermit_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_15:: @ 081039C4
	map_bottom offset_gAreaRoomMap_CrenelCaves_HintScrub_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CrenelCaves_HintScrub_top, 0x12C, 1, 1

gAreaRoomMap_CrenelCaves_16:: @ 081039DC
	map_bottom offset_gAreaRoomMap_CrenelCaves_ToGrayblade_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_CrenelCaves_ToGrayblade_top, 0x1FE, 1, 1

gAreaRoomMaps_CrenelCaves:: @ 081039F4
	.4byte gAreaRoomMap_CrenelCaves_0
	.4byte gAreaRoomMap_CrenelCaves_1
	.4byte gAreaRoomMap_CrenelCaves_2
	.4byte gAreaRoomMap_CrenelCaves_3
	.4byte gAreaRoomMap_CrenelCaves_4
	.4byte gAreaRoomMap_CrenelCaves_5
	.4byte gAreaRoomMap_CrenelCaves_6
	.4byte gAreaRoomMap_CrenelCaves_7
	.4byte gAreaRoomMap_CrenelCaves_8
	.4byte gAreaRoomMap_CrenelCaves_9
	.4byte gAreaRoomMap_CrenelCaves_10
	.4byte gAreaRoomMap_CrenelCaves_11
	.4byte gAreaRoomMap_CrenelCaves_12
	.4byte gAreaRoomMap_CrenelCaves_13
	.4byte gAreaRoomMap_CrenelCaves_14
	.4byte gAreaRoomMap_CrenelCaves_15
	.4byte gAreaRoomMap_CrenelCaves_16

gAreaRoomMap_GreatFairies_0:: @ 08103A38
	map_bottom offset_gAreaRoomMap_GreatFairies_Graveyard_bottom, 0x21C, 1
	map_top offset_gAreaRoomMap_GreatFairies_Graveyard_top, 0x21C, 1, 1

gAreaRoomMap_GreatFairies_1:: @ 08103A50
	map_bottom offset_gAreaRoomMap_GreatFairies_MinishWoods_bottom, 0x21C, 1
	map_top offset_gAreaRoomMap_GreatFairies_MinishWoods_top, 0x21C, 1, 1

gAreaRoomMap_GreatFairies_2:: @ 08103A68
	map_bottom offset_gAreaRoomMap_GreatFairies_Crenel_bottom, 0x21C, 1
	map_top offset_gAreaRoomMap_GreatFairies_Crenel_top, 0x21C, 1, 1

gAreaRoomMaps_GreatFairies:: @ 08103A80
	.4byte gAreaRoomMap_GreatFairies_0
	.4byte gAreaRoomMap_GreatFairies_1
	.4byte gAreaRoomMap_GreatFairies_2
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused

gAreaRoomMap_LakeWoodsCave_0:: @ 08103AA0
	map_bottom offset_gAreaRoomMap_LakeWoodsCave_Main_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_LakeWoodsCave_Main_top, 0x1F02, 1, 1

gAreaRoomMaps_LakeWoodsCave:: @ 08103AB8
	.4byte gAreaRoomMap_LakeWoodsCave_0

gAreaRoomMap_HyruleDigCaves_0:: @ 08103ABC
	map_bottom offset_gAreaRoomMap_HyruleDigCaves_Town_bottom, 0x1D88, 1
	map_top offset_gAreaRoomMap_HyruleDigCaves_Town_top, 0x1D88, 1, 1

gAreaRoomMaps_HyruleDigCaves:: @ 08103AD4
	.4byte gAreaRoomMap_HyruleDigCaves_0

gAreaRoomMap_DigCaves_0:: @ 08103AD8
	map_bottom offset_gAreaRoomMap_DigCaves_EasternHills_bottom, 0x7F8, 1
	map_top offset_gAreaRoomMap_DigCaves_EasternHills_top, 0x7F8, 1, 1

gAreaRoomMap_DigCaves_1:: @ 08103AF0
	map_bottom offset_gAreaRoomMap_DigCaves_TrilbyHighlands_bottom, 0xE10, 1
	map_top offset_gAreaRoomMap_DigCaves_TrilbyHighlands_top, 0xE10, 1, 1

gAreaRoomMaps_DigCaves1:: @ 08103B08
	.4byte gAreaRoomMap_DigCaves_0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_DigCaves_1

gAreaRoomMap_CrenelDigCave_0:: @ 08103B18
	map_bottom offset_gAreaRoomMap_CrenelDigCave_0_bottom, 0x7C0, 1
	map_top offset_gAreaRoomMap_CrenelDigCave_0_top, 0x7C0, 1, 1

gAreaRoomMaps_CrenelDigCave:: @ 08103B30
	.4byte gAreaRoomMap_CrenelDigCave_0

gAreaRoomMap_VeilFallsDigCave_0:: @ 08103B34
	map_bottom offset_gAreaRoomMap_VeilFallsDigCave_0_bottom, 0xEC4, 1
	map_top offset_gAreaRoomMap_VeilFallsDigCave_0_top, 0xEC4, 1, 1

gAreaRoomMaps_VeilFallsDigCave:: @ 08103B4C
	.4byte gAreaRoomMap_VeilFallsDigCave_0

gAreaRoomMap_CastorWildsDigCave_0:: @ 08103B50
	map_bottom offset_gAreaRoomMap_CastorWildsDigCave_0_bottom, 0x1D88, 1
	map_top offset_gAreaRoomMap_CastorWildsDigCave_0_top, 0x1D88, 1, 1

gAreaRoomMaps_CastorWildsDigCave:: @ 08103B68
	.4byte gAreaRoomMap_CastorWildsDigCave_0

gAreaRoomMap_OuterFortressOfWinds_0:: @ 08103B6C
	map_bottom offset_gAreaRoomMap_OuterFortressOfWinds_EntranceHall_bottom, 0x5FE, 1
	map_top offset_gAreaRoomMap_OuterFortressOfWinds_EntranceHall_top, 0x5FE, 1, 1

gAreaRoomMap_OuterFortressOfWinds_1:: @ 08103B84
	map_bottom offset_gAreaRoomMap_OuterFortressOfWinds_2f_bottom, 0x938, 1
	map_top offset_gAreaRoomMap_OuterFortressOfWinds_2f_top, 0x938, 1, 1

gAreaRoomMap_OuterFortressOfWinds_2:: @ 08103B9C
	map_bottom offset_gAreaRoomMap_OuterFortressOfWinds_3f_bottom, 0x5FE, 1
	map_top offset_gAreaRoomMap_OuterFortressOfWinds_3f_top, 0x5FE, 1, 1

gAreaRoomMap_OuterFortressOfWinds_3:: @ 08103BB4
	map_bottom offset_gAreaRoomMap_OuterFortressOfWinds_MoleMitts_bottom, 0x1EE, 1
	map_top offset_gAreaRoomMap_OuterFortressOfWinds_MoleMitts_top, 0x1EE, 1, 1

gAreaRoomMap_OuterFortressOfWinds_4:: @ 08103BCC
	map_bottom offset_gAreaRoomMap_OuterFortressOfWinds_SmallKey_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_OuterFortressOfWinds_SmallKey_top, 0x186, 1, 1

gAreaRoomMaps_OuterFortressOfWinds:: @ 08103BE4
	.4byte gAreaRoomMap_OuterFortressOfWinds_0
	.4byte gAreaRoomMap_OuterFortressOfWinds_1
	.4byte gAreaRoomMap_OuterFortressOfWinds_2
	.4byte gAreaRoomMap_OuterFortressOfWinds_3
	.4byte gAreaRoomMap_OuterFortressOfWinds_4

gAreaRoomMap_HyliaDigCaves_0:: @ 08103BF8
	map_bottom offset_gAreaRoomMap_HyliaDigCaves_0_bottom, 0x220, 1
	map_top offset_gAreaRoomMap_HyliaDigCaves_0_top, 0x220, 1, 1

gAreaRoomMap_HyliaDigCaves_1:: @ 08103C10
	map_bottom offset_gAreaRoomMap_HyliaDigCaves_1_bottom, 0xD4A, 1
	map_top offset_gAreaRoomMap_HyliaDigCaves_1_top, 0xD4A, 1, 1

gAreaRoomMaps_HyliaDigCaves:: @ 08103C28
	.4byte gAreaRoomMap_HyliaDigCaves_0
	.4byte gAreaRoomMap_HyliaDigCaves_1

gAreaRoomMap_Empty_0:: @ 08103C30
	map_bottom offset_gAreaRoomMap_Empty_0_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_Empty_0_top, 0x1F02, 1, 1

gAreaRoomMaps_Empty:: @ 08103C48
	.4byte gAreaRoomMap_Empty_0
	.4byte gAreaRoomMap_Empty_0

gAreaRoomMap_MinishVillage_0:: @ 08103C50
	map_bottom offset_gAreaRoomMap_MinishVillage_Main_bottom, 0x1F02, 1
	map_top offset_gAreaRoomMap_MinishVillage_Main_top, 0x1F02, 1, 1

gAreaRoomMap_MinishVillage_1:: @ 08103C68
	map_bottom offset_gAreaRoomMap_MinishVillage_SideHouseArea_bottom, 0x618, 1
	map_top offset_gAreaRoomMap_MinishVillage_SideHouseArea_top, 0x618, 1, 1

gAreaRoomMaps_MinishVillage:: @ 08103C80
	.4byte gAreaRoomMap_MinishVillage_0
	.4byte gAreaRoomMap_MinishVillage_1

gAreaRoomMap_MelarisMine_0:: @ 08103C88
	map_bottom offset_gAreaRoomMap_MelarisMine_Main_bottom, 0xDB6, 1
	map_top offset_gAreaRoomMap_MelarisMine_Main_top, 0xDB6, 1, 1

gAreaRoomMaps_MelarisMine:: @ 08103CA0
	.4byte gAreaRoomMap_MelarisMine_0

gAreaRoomMap_MinishPaths_0:: @ 08103CA4
	map_bottom offset_gAreaRoomMap_MinishPaths_MinishVillage_bottom, 0x5DC, 1, 1

gAreaRoomMap_MinishPaths_1:: @ 08103CB0
	map_bottom offset_gAreaRoomMap_MinishPaths_Bow_bottom, 0x5DC, 1, 1

gAreaRoomMap_MinishPaths_2:: @ 08103CBC
	map_bottom offset_gAreaRoomMap_MinishPaths_Schoolyard_bottom, 0x5DC, 1, 1

gAreaRoomMap_MinishPaths_3:: @ 08103CC8
	map_bottom offset_gAreaRoomMap_MinishPaths_LonLonRanch_bottom, 0x5DC, 1, 1

gAreaRoomMap_MinishPaths_4:: @ 08103CD4
	map_bottom offset_gAreaRoomMap_MinishPaths_LakeHylia_bottom, 0x5DC, 1, 1

gAreaRoomMaps_MinishPaths:: @ 08103CE0
	.4byte gAreaRoomMap_MinishPaths_0
	.4byte gAreaRoomMap_MinishPaths_1
	.4byte gAreaRoomMap_MinishPaths_2
	.4byte gAreaRoomMap_MinishPaths_3
	.4byte gAreaRoomMap_MinishPaths_4

gAreaRoomMap_CrenelMinishPaths_0:: @ 08103CF4
	map_bottom offset_gAreaRoomMap_CrenelMinishPaths_Bean_bottom, 0x5DC, 1, 1

gAreaRoomMap_CrenelMinishPaths_1:: @ 08103D00
	map_bottom offset_gAreaRoomMap_CrenelMinishPaths_SpringWater_bottom, 0x5DC, 1, 1

gAreaRoomMap_CrenelMinishPaths_2:: @ 08103D0C
	map_bottom offset_gAreaRoomMap_CrenelMinishPaths_Rain_bottom, 0x4B0, 1, 1

gAreaRoomMap_CrenelMinishPaths_3:: @ 08103D18
	map_bottom offset_gAreaRoomMap_CrenelMinishPaths_Melari_bottom, 0x4B0, 1, 1

gAreaRoomMaps_CrenelMinishPaths:: @ 08103D24
	.4byte gAreaRoomMap_CrenelMinishPaths_0
	.4byte gAreaRoomMap_CrenelMinishPaths_1
	.4byte gAreaRoomMap_CrenelMinishPaths_2
	.4byte gAreaRoomMap_CrenelMinishPaths_3

gAreaRoomMap_MinishHouseInteriors_0:: @ 08103D34
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_GentariMain, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_GentariMain_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_1:: @ 08103D58
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_GentariExit, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_GentariExit_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_2:: @ 08103D7C
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_Festari, 0x1D0, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_Festari_bottom, 0x1000, 1, 1

gAreaRoomMap_MinishHouseInteriors_3:: @ 08103DA0
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_Red, 0xA0, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_Red_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_4:: @ 08103DC4
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_Green, 0xA0, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_Green_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_5:: @ 08103DE8
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_Blue, 0xA0, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_Blue_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_6:: @ 08103E0C
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_SideArea, 0xA0, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_SideArea_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_8:: @ 08103E30
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_PotMinish, 0xE1, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_PotMinish_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_7:: @ 08103E54
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_ShoeMinish, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_ShoeMinish_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_9:: @ 08103E78
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_BarrelMinish, 0x159, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_BarrelMinish_bottom, 0x1000, 1, 1

gAreaRoomMap_MinishHouseInteriors_10:: @ 08103E9C
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_MelariMinesSouthwest, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_MelariMinesSouthwest_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_11:: @ 08103EC0
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_MelariMinesSoutheast, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_MelariMinesSoutheast_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_12:: @ 08103EE4
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_MelariMinesEast, 0xDC, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_MelariMinesEast_bottom, 0x1000, 1, 1

gAreaRoomMap_MinishHouseInteriors_13:: @ 08103F08
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_HyruleFieldSouthwest, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_HyruleFieldSouthwest_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_14:: @ 08103F2C
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_SouthHyruleField, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_SouthHyruleField_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_15:: @ 08103F50
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_NextToKnuckle, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_NextToKnuckle_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_16:: @ 08103F74
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_Librari, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_Librari_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_17:: @ 08103F98
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_HyruleFieldExit, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_HyruleFieldExit_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_18:: @ 08103FBC
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_HyruleTown, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_HyruleTown_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_19:: @ 08103FE0
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_MinishWoodsBomb, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_MinishWoodsBomb_bottom, 0x800, 1, 1

gAreaRoomMap_MinishHouseInteriors_20:: @ 08104004
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_MinishHouseInteriors_LakeHyliaOcarina, 0x96, 1
	map_bottom_special offset_gRoomMapping_MinishHouseInteriors_LakeHyliaOcarina_bottom, 0x800, 1, 1

gAreaRoomMaps_MinishHouseInteriors:: @ 08104028
	.4byte gAreaRoomMap_MinishHouseInteriors_0
	.4byte gAreaRoomMap_MinishHouseInteriors_1
	.4byte gAreaRoomMap_MinishHouseInteriors_2
	.4byte gAreaRoomMap_MinishHouseInteriors_3
	.4byte gAreaRoomMap_MinishHouseInteriors_4
	.4byte gAreaRoomMap_MinishHouseInteriors_5
	.4byte gAreaRoomMap_MinishHouseInteriors_6
	.4byte gAreaRoomMap_MinishHouseInteriors_7
	.4byte gAreaRoomMap_MinishHouseInteriors_8
	.4byte gAreaRoomMap_MinishHouseInteriors_9
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_MinishHouseInteriors_10
	.4byte gAreaRoomMap_MinishHouseInteriors_11
	.4byte gAreaRoomMap_MinishHouseInteriors_12
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_MinishHouseInteriors_13
	.4byte gAreaRoomMap_MinishHouseInteriors_14
	.4byte gAreaRoomMap_MinishHouseInteriors_15
	.4byte gAreaRoomMap_MinishHouseInteriors_16
	.4byte gAreaRoomMap_MinishHouseInteriors_17
	.4byte gAreaRoomMap_MinishHouseInteriors_18
	.4byte gAreaRoomMap_MinishHouseInteriors_19
	.4byte gAreaRoomMap_MinishHouseInteriors_20

gAreaRoomMap_TownMinishHoles_0:: @ 081040C8
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_MayorsHouse, 0x96, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_MayorsHouse_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_1:: @ 081040EC
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_WestOracle, 0x96, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_WestOracle_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_2:: @ 08104110
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_DrLeft, 0x96, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_DrLeft_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_3:: @ 08104134
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_Carpenter, 0x96, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_Carpenter_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_4:: @ 08104158
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_Cafe, 0x96, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_Cafe_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_5:: @ 0810417C
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_5, 0x96, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_5_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_6:: @ 081041A0
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_LibraryBookshelf, 0x24C, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_LibraryBookshelf_bottom, 0x2000, 1, 1

gAreaRoomMap_TownMinishHoles_7:: @ 081041C4
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_LibraryBooksHouse, 0xE1, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_LibraryBooksHouse_bottom, 0x800, 1, 1

gAreaRoomMap_TownMinishHoles_8:: @ 081041E8
	map_bottom offset_gAreaRoomMap_None, 0x2000, 1
	collision_bottom offset_gRoomCollisionMap_TownMinishHoles_RemShoeShop, 0x190, 1
	map_bottom_special offset_gRoomMapping_TownMinishHoles_RemShoeShop_bottom, 0x2000, 1, 1

gAreaRoomMaps_TownMinishHoles:: @ 0810420C
	.4byte gAreaRoomMap_TownMinishHoles_0
	.4byte gAreaRoomMap_TownMinishHoles_1
	.4byte gAreaRoomMap_TownMinishHoles_2
	.4byte gAreaRoomMap_TownMinishHoles_3
	.4byte gAreaRoomMap_TownMinishHoles_4
	.4byte gAreaRoomMap_TownMinishHoles_5
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_TownMinishHoles_6
	.4byte gAreaRoomMap_TownMinishHoles_7
	.4byte gAreaRoomMap_TownMinishHoles_8
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0

gAreaRoomMap_HouseInteriors1_0:: @ 081042CC
	map_bottom offset_gAreaRoomMap_HouseInteriors1_Mayor_bottom, 0x198, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_Mayor_top, 0x198, 1, 1

gAreaRoomMap_HouseInteriors1_1:: @ 081042E4
	map_bottom offset_gAreaRoomMap_HouseInteriors1_PostOffice_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_PostOffice_top, 0x14A, 1, 1

gAreaRoomMap_HouseInteriors1_2:: @ 081042FC
	map_bottom offset_gAreaRoomMap_HouseInteriors1_Library2f_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_Library2f_top, 0x14A, 1, 1

gAreaRoomMap_HouseInteriors1_3:: @ 08104314
	map_bottom offset_gAreaRoomMap_HouseInteriors1_Library1f_bottom, 0x2C0, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_Library1f_top, 0x2C0, 1, 1

gAreaRoomMap_HouseInteriors1_4:: @ 0810432C
	map_bottom offset_gAreaRoomMap_HouseInteriors1_Inn1f_bottom, 0x1A4, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_Inn1f_top, 0x1A4, 1, 1

gAreaRoomMap_HouseInteriors1_5:: @ 08104344
	map_bottom offset_gAreaRoomMap_HouseInteriors1_InnWestRoom_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_InnWestRoom_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors1_6:: @ 0810435C
	map_bottom offset_gAreaRoomMap_HouseInteriors1_InnMiddleRoom_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_InnMiddleRoom_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors1_7:: @ 08104374
	map_bottom offset_gAreaRoomMap_HouseInteriors1_InnEastRoom_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_InnEastRoom_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors1_8:: @ 0810438C
	map_bottom offset_gAreaRoomMap_HouseInteriors1_InnWest2f_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_InnWest2f_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors1_9:: @ 081043A4
	map_bottom offset_gAreaRoomMap_HouseInteriors1_InnEast2f_bottom, 0x348, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_InnEast2f_top, 0x348, 1, 1

gAreaRoomMap_HouseInteriors1_10:: @ 081043BC
	map_bottom offset_gAreaRoomMap_HouseInteriors1_InnMinishHeartPiece_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_InnMinishHeartPiece_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors1_11:: @ 081043D4
	map_bottom offset_gAreaRoomMap_HouseInteriors1_SchoolWest_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_SchoolWest_top, 0x1C2, 1, 1

gAreaRoomMap_HouseInteriors1_12:: @ 081043EC
	map_bottom offset_gAreaRoomMap_HouseInteriors1_SchoolEast_bottom, 0x1B8, 1
	map_top offset_gAreaRoomMap_HouseInteriors1_SchoolEast_top, 0x1B8, 1, 1

gAreaRoomMaps_HouseInteriors1:: @ 08104404
	.4byte gAreaRoomMap_HouseInteriors1_0
	.4byte gAreaRoomMap_HouseInteriors1_1
	.4byte gAreaRoomMap_HouseInteriors1_2
	.4byte gAreaRoomMap_HouseInteriors1_3
	.4byte gAreaRoomMap_HouseInteriors1_4
	.4byte gAreaRoomMap_HouseInteriors1_5
	.4byte gAreaRoomMap_HouseInteriors1_6
	.4byte gAreaRoomMap_HouseInteriors1_7
	.4byte gAreaRoomMap_HouseInteriors1_8
	.4byte gAreaRoomMap_HouseInteriors1_9
	.4byte gAreaRoomMap_HouseInteriors1_10
	.4byte gAreaRoomMap_HouseInteriors1_11
	.4byte gAreaRoomMap_HouseInteriors1_12
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0

gAreaRoomMap_HouseInteriors2_0:: @ 08104444
	map_bottom offset_gAreaRoomMap_HouseInteriors2_Stranger_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_Stranger_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_1:: @ 0810445C
	map_bottom offset_gAreaRoomMap_HouseInteriors2_WestOracle_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_WestOracle_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors2_2:: @ 08104474
	map_bottom offset_gAreaRoomMap_HouseInteriors2_2_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_2_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors2_3:: @ 0810448C
	map_bottom offset_gAreaRoomMap_HouseInteriors2_3_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_3_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors2_4:: @ 081044A4
	map_bottom offset_gAreaRoomMap_HouseInteriors2_DrLeft_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_DrLeft_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors2_5:: @ 081044BC
	map_bottom offset_gAreaRoomMap_HouseInteriors2_5_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_5_top, 0x14A, 1, 1

gAreaRoomMap_HouseInteriors2_6:: @ 081044D4
	map_bottom offset_gAreaRoomMap_HouseInteriors2_Romio_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_Romio_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_7:: @ 081044EC
	map_bottom offset_gAreaRoomMap_HouseInteriors2_Julietta_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_Julietta_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors2_8:: @ 08104504
	map_bottom offset_gAreaRoomMap_HouseInteriors2_Percy_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_Percy_top, 0x14A, 1, 1

gAreaRoomMap_HouseInteriors2_9:: @ 0810451C
	map_bottom offset_gAreaRoomMap_HouseInteriors2_EastOracle_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_EastOracle_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_10:: @ 08104534
	map_bottom offset_gAreaRoomMap_HouseInteriors2_A_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_A_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_11:: @ 0810454C
	map_bottom offset_gAreaRoomMap_HouseInteriors2_B_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_B_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_12:: @ 08104564
	map_bottom offset_gAreaRoomMap_HouseInteriors2_Cucco_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_Cucco_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_13:: @ 0810457C
	map_bottom offset_gAreaRoomMap_HouseInteriors2_LinksHouseEntrance_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_LinksHouseEntrance_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_14:: @ 08104594
	map_bottom offset_gAreaRoomMap_HouseInteriors2_LinksHouseSmith_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_LinksHouseSmith_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_15:: @ 081045AC
	map_bottom offset_gAreaRoomMap_HouseInteriors2_Dampe_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_Dampe_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_16:: @ 081045C4
	map_bottom offset_gAreaRoomMap_HouseInteriors2_13_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_13_top, 0x14A, 1, 1

gAreaRoomMap_HouseInteriors2_17:: @ 081045DC
	map_bottom offset_gAreaRoomMap_HouseInteriors2_StockwellLakeHouse_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_StockwellLakeHouse_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors2_18:: @ 081045F4
	map_bottom offset_gAreaRoomMap_HouseInteriors2_LinksHouseBedroom_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors2_LinksHouseBedroom_top, 0x12C, 1, 1

gAreaRoomMaps_HouseInteriors2:: @ 0810460C
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_1
	.4byte gAreaRoomMap_HouseInteriors2_2
	.4byte gAreaRoomMap_HouseInteriors2_3
	.4byte gAreaRoomMap_HouseInteriors2_4
	.4byte gAreaRoomMap_HouseInteriors2_5
	.4byte gAreaRoomMap_HouseInteriors2_6
	.4byte gAreaRoomMap_HouseInteriors2_7
	.4byte gAreaRoomMap_HouseInteriors2_8
	.4byte gAreaRoomMap_HouseInteriors2_9
	.4byte gAreaRoomMap_HouseInteriors2_10
	.4byte gAreaRoomMap_HouseInteriors2_11
	.4byte gAreaRoomMap_HouseInteriors2_12
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_13
	.4byte gAreaRoomMap_HouseInteriors2_14
	.4byte gAreaRoomMap_HouseInteriors2_15
	.4byte gAreaRoomMap_HouseInteriors2_16
	.4byte gAreaRoomMap_HouseInteriors2_17
	.4byte gAreaRoomMap_HouseInteriors2_18
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0
	.4byte gAreaRoomMap_HouseInteriors2_0

gAreaRoomMap_HouseInteriors4_0:: @ 081046CC
	map_bottom offset_gAreaRoomMap_HouseInteriors4_Carpenter_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors4_Carpenter_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors4_1:: @ 081046E4
	map_bottom offset_gAreaRoomMap_HouseInteriors4_Swiftblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors4_Swiftblade_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors4_2:: @ 081046FC
	map_bottom offset_gAreaRoomMap_HouseInteriors4_RanchHouseWest_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors4_RanchHouseWest_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors4_3:: @ 08104714
	map_bottom offset_gAreaRoomMap_HouseInteriors4_RanchHouseEast_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors4_RanchHouseEast_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors4_4:: @ 0810472C
	map_bottom offset_gAreaRoomMap_HouseInteriors4_FarmHouse_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors4_FarmHouse_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors4_5:: @ 08104744
	map_bottom offset_gAreaRoomMap_HouseInteriors4_MayorLakeCabin_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors4_MayorLakeCabin_top, 0x168, 1, 1

gAreaRoomMaps_HouseInteriors4:: @ 0810475C
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_1
	.4byte gAreaRoomMap_HouseInteriors4_2
	.4byte gAreaRoomMap_HouseInteriors4_3
	.4byte gAreaRoomMap_HouseInteriors4_4
	.4byte gAreaRoomMap_HouseInteriors4_5
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0
	.4byte gAreaRoomMap_HouseInteriors4_0

gAreaRoomMap_HouseInteriors3_0:: @ 0810479C
	map_bottom offset_gAreaRoomMap_HouseInteriors3_StockwellShop_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_StockwellShop_top, 0x186, 1, 1

gAreaRoomMap_HouseInteriors3_1:: @ 081047B4
	map_bottom offset_gAreaRoomMap_HouseInteriors3_Cafe_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_Cafe_top, 0x186, 1, 1

gAreaRoomMap_HouseInteriors3_2:: @ 081047CC
	map_bottom offset_gAreaRoomMap_HouseInteriors3_RemShoeShop_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_RemShoeShop_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors3_3:: @ 081047E4
	map_bottom offset_gAreaRoomMap_HouseInteriors3_Bakery_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_Bakery_top, 0x168, 1, 1

gAreaRoomMap_HouseInteriors3_4:: @ 081047FC
	map_bottom offset_gAreaRoomMap_HouseInteriors3_Simon_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_Simon_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors3_5:: @ 08104814
	map_bottom offset_gAreaRoomMap_HouseInteriors3_FigurineHouse_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_FigurineHouse_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors3_6:: @ 0810482C
	map_bottom offset_gAreaRoomMap_HouseInteriors3_BorlovEntrance_bottom, 0x14A, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_BorlovEntrance_top, 0x14A, 1, 1

gAreaRoomMap_HouseInteriors3_7:: @ 08104844
	map_bottom offset_gAreaRoomMap_HouseInteriors3_Carlov_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_Carlov_top, 0x12C, 1, 1

gAreaRoomMap_HouseInteriors3_8:: @ 0810485C
	map_bottom offset_gAreaRoomMap_HouseInteriors3_Borlov_bottom, 0x140, 1
	map_top offset_gAreaRoomMap_HouseInteriors3_Borlov_top, 0x140, 1, 1

gAreaRoomMaps_HouseInteriors3:: @ 08104874
	.4byte gAreaRoomMap_HouseInteriors3_0
	.4byte gAreaRoomMap_HouseInteriors3_1
	.4byte gAreaRoomMap_HouseInteriors3_2
	.4byte gAreaRoomMap_HouseInteriors3_3
	.4byte gAreaRoomMap_HouseInteriors3_4
	.4byte gAreaRoomMap_HouseInteriors3_5
	.4byte gAreaRoomMap_HouseInteriors3_6
	.4byte gAreaRoomMap_HouseInteriors3_7
	.4byte gAreaRoomMap_HouseInteriors3_8

gAreaRoomMap_TreeInteriors_0:: @ 08104898
	map_bottom offset_gAreaRoomMap_TreeInteriors_WitchHut_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_WitchHut_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_1:: @ 081048B0
	map_bottom offset_gAreaRoomMap_TreeInteriors_StairsToCarlov_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_StairsToCarlov_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_2:: @ 081048C8
	map_bottom offset_gAreaRoomMap_TreeInteriors_PercysTreehouse_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_PercysTreehouse_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_3:: @ 081048E0
	map_bottom offset_gAreaRoomMap_TreeInteriors_SouthHyruleFieldHeartPiece_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_SouthHyruleFieldHeartPiece_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_4:: @ 081048F8
	map_bottom offset_gAreaRoomMap_TreeInteriors_Waveblade_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_Waveblade_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_5:: @ 08104910
	map_bottom offset_gAreaRoomMap_TreeInteriors_14_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_14_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_6:: @ 08104928
	map_bottom offset_gAreaRoomMap_TreeInteriors_BoomerangNorthwest_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_BoomerangNorthwest_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_7:: @ 08104940
	map_bottom offset_gAreaRoomMap_TreeInteriors_BoomerangNortheast_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_BoomerangNortheast_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_8:: @ 08104958
	map_bottom offset_gAreaRoomMap_TreeInteriors_BoomerangSouthwest_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_BoomerangSouthwest_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_9:: @ 08104970
	map_bottom offset_gAreaRoomMap_TreeInteriors_BoomerangSoutheast_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_BoomerangSoutheast_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_10:: @ 08104988
	map_bottom offset_gAreaRoomMap_TreeInteriors_WesternWoodsHeartPiece_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_WesternWoodsHeartPiece_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_11:: @ 081049A0
	map_bottom offset_gAreaRoomMap_TreeInteriors_NorthHyruleFieldFairyFountain_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_NorthHyruleFieldFairyFountain_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_12:: @ 081049B8
	map_bottom offset_gAreaRoomMap_TreeInteriors_MinishWoodsGreatFairy_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_MinishWoodsGreatFairy_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_13:: @ 081049D0
	map_bottom offset_gAreaRoomMap_TreeInteriors_1c_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_1c_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_14:: @ 081049E8
	map_bottom offset_gAreaRoomMap_TreeInteriors_MinishWoodsBusinessScrub_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_MinishWoodsBusinessScrub_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_15:: @ 08104A00
	map_bottom offset_gAreaRoomMap_TreeInteriors_1e_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_1e_top, 0x12C, 1, 1

gAreaRoomMap_TreeInteriors_16:: @ 08104A18
	map_bottom offset_gAreaRoomMap_TreeInteriors_UnusedHeartContainer_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_TreeInteriors_UnusedHeartContainer_top, 0x12C, 1, 1

gAreaRoomMaps_TreeInteriors:: @ 08104A30
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_0
	.4byte gAreaRoomMap_TreeInteriors_1
	.4byte gAreaRoomMap_TreeInteriors_2
	.4byte gAreaRoomMap_TreeInteriors_3
	.4byte gAreaRoomMap_TreeInteriors_4
	.4byte gAreaRoomMap_TreeInteriors_5
	.4byte gAreaRoomMap_TreeInteriors_6
	.4byte gAreaRoomMap_TreeInteriors_7
	.4byte gAreaRoomMap_TreeInteriors_8
	.4byte gAreaRoomMap_TreeInteriors_9
	.4byte gAreaRoomMap_TreeInteriors_10
	.4byte gAreaRoomMap_TreeInteriors_11
	.4byte gAreaRoomMap_TreeInteriors_12
	.4byte gAreaRoomMap_TreeInteriors_13
	.4byte gAreaRoomMap_TreeInteriors_14
	.4byte gAreaRoomMap_TreeInteriors_15
	.4byte gAreaRoomMap_TreeInteriors_16

gAreaRoomMap_Dojos_0:: @ 08104AB0
	map_bottom offset_gAreaRoomMap_Dojos_Grayblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_Grayblade_top, 0x168, 1, 1

gAreaRoomMap_Dojos_1:: @ 08104AC8
	map_bottom offset_gAreaRoomMap_Dojos_Splitblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_Splitblade_top, 0x168, 1, 1

gAreaRoomMap_Dojos_2:: @ 08104AE0
	map_bottom offset_gAreaRoomMap_Dojos_Greatblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_Greatblade_top, 0x168, 1, 1

gAreaRoomMap_Dojos_3:: @ 08104AF8
	map_bottom offset_gAreaRoomMap_Dojos_Scarblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_Scarblade_top, 0x168, 1, 1

gAreaRoomMap_Dojos_4:: @ 08104B10
	map_bottom offset_gAreaRoomMap_Dojos_SwiftbladeI_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_SwiftbladeI_top, 0x168, 1, 1

gAreaRoomMap_Dojos_5:: @ 08104B28
	map_bottom offset_gAreaRoomMap_Dojos_Grimblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_Grimblade_top, 0x168, 1, 1

gAreaRoomMap_Dojos_6:: @ 08104B40
	map_bottom offset_gAreaRoomMap_Dojos_Waveblade_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_Dojos_Waveblade_top, 0x168, 1, 1

gAreaRoomMap_Dojos_7:: @ 08104B58
	map_bottom offset_gAreaRoomMap_Dojos_7_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_7_top, 0x12C, 1, 1

gAreaRoomMap_Dojos_8:: @ 08104B70
	map_bottom offset_gAreaRoomMap_Dojos_8_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_8_top, 0x12C, 1, 1

gAreaRoomMap_Dojos_9:: @ 08104B88
	map_bottom offset_gAreaRoomMap_Dojos_9_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_9_top, 0x12C, 1, 1

gAreaRoomMap_Dojos_10:: @ 08104BA0
	map_bottom offset_gAreaRoomMap_Dojos_ToGrimblade_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_ToGrimblade_top, 0x12C, 1, 1

gAreaRoomMap_Dojos_11:: @ 08104BB8
	map_bottom offset_gAreaRoomMap_Dojos_ToSplitblade_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_ToSplitblade_top, 0x12C, 1, 1

gAreaRoomMap_Dojos_12:: @ 08104BD0
	map_bottom offset_gAreaRoomMap_Dojos_ToGreatblade_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_ToGreatblade_top, 0x12C, 1, 1

gAreaRoomMap_Dojos_13:: @ 08104BE8
	map_bottom offset_gAreaRoomMap_Dojos_ToScarblade_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Dojos_ToScarblade_top, 0x12C, 1, 1

gAreaRoomMaps_Dojos:: @ 08104C00
	.4byte gAreaRoomMap_Dojos_0
	.4byte gAreaRoomMap_Dojos_1
	.4byte gAreaRoomMap_Dojos_2
	.4byte gAreaRoomMap_Dojos_3
	.4byte gAreaRoomMap_Dojos_4
	.4byte gAreaRoomMap_Dojos_5
	.4byte gAreaRoomMap_Dojos_6
	.4byte gAreaRoomMap_Dojos_7
	.4byte gAreaRoomMap_Dojos_8
	.4byte gAreaRoomMap_Dojos_9
	.4byte gAreaRoomMap_Dojos_10
	.4byte gAreaRoomMap_Dojos_11
	.4byte gAreaRoomMap_Dojos_12
	.4byte gAreaRoomMap_Dojos_13
	.4byte gAreaRoomMap_Dojos_0
	.4byte gAreaRoomMap_Dojos_0

gAreaRoomMap_MinishCracks_0:: @ 08104C40
	map_bottom offset_gAreaRoomMap_MinishCracks_LonLonRanchNorth_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_LonLonRanchNorth_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_1:: @ 08104C58
	map_bottom offset_gAreaRoomMap_MinishCracks_LakeHyliaEast_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_LakeHyliaEast_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_2:: @ 08104C70
	map_bottom offset_gAreaRoomMap_MinishCracks_HyruleCastleGarden_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_HyruleCastleGarden_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_3:: @ 08104C88
	map_bottom offset_gAreaRoomMap_MinishCracks_MtCrenel_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_MtCrenel_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_4:: @ 08104CA0
	map_bottom offset_gAreaRoomMap_MinishCracks_EastHyruleCastle_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_EastHyruleCastle_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_5:: @ 08104CB8
	map_bottom offset_gAreaRoomMap_MinishCracks_5_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_MinishCracks_5_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_6:: @ 08104CD0
	map_bottom offset_gAreaRoomMap_MinishCracks_CastorWildsBow_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_CastorWildsBow_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_7:: @ 08104CE8
	map_bottom offset_gAreaRoomMap_MinishCracks_RuinsEntrance_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_RuinsEntrance_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_8:: @ 08104D00
	map_bottom offset_gAreaRoomMap_MinishCracks_MinishWoodsSouth_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_MinishWoodsSouth_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_9:: @ 08104D18
	map_bottom offset_gAreaRoomMap_MinishCracks_CastorWildsNorth_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_CastorWildsNorth_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_10:: @ 08104D30
	map_bottom offset_gAreaRoomMap_MinishCracks_CastorWildsWest_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_CastorWildsWest_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_11:: @ 08104D48
	map_bottom offset_gAreaRoomMap_MinishCracks_CastorWildsMiddle_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_CastorWildsMiddle_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_12:: @ 08104D60
	map_bottom offset_gAreaRoomMap_MinishCracks_RuinsTektite_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_RuinsTektite_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_13:: @ 08104D78
	map_bottom offset_gAreaRoomMap_MinishCracks_CastorWildsNextToBow_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_MinishCracks_CastorWildsNextToBow_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_14:: @ 08104D90
	map_bottom offset_gAreaRoomMap_MinishCracks_E_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_MinishCracks_E_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_15:: @ 08104DA8
	map_bottom offset_gAreaRoomMap_MinishCracks_F_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_MinishCracks_F_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_16:: @ 08104DC0
	map_bottom offset_gAreaRoomMap_MinishCracks_10_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_MinishCracks_10_top, 0x12C, 1, 1

gAreaRoomMap_MinishCracks_17:: @ 08104DD8
	map_bottom offset_gAreaRoomMap_MinishCracks_11_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_MinishCracks_11_top, 0x12C, 1, 1

gAreaRoomMaps_MinishCracks:: @ 08104DF0
	.4byte gAreaRoomMap_MinishCracks_0
	.4byte gAreaRoomMap_MinishCracks_1
	.4byte gAreaRoomMap_MinishCracks_2
	.4byte gAreaRoomMap_MinishCracks_3
	.4byte gAreaRoomMap_MinishCracks_4
	.4byte gAreaRoomMap_MinishCracks_5
	.4byte gAreaRoomMap_MinishCracks_6
	.4byte gAreaRoomMap_MinishCracks_7
	.4byte gAreaRoomMap_MinishCracks_8
	.4byte gAreaRoomMap_MinishCracks_9
	.4byte gAreaRoomMap_MinishCracks_10
	.4byte gAreaRoomMap_MinishCracks_11
	.4byte gAreaRoomMap_MinishCracks_12
	.4byte gAreaRoomMap_MinishCracks_13
	.4byte gAreaRoomMap_MinishCracks_14
	.4byte gAreaRoomMap_MinishCracks_15
	.4byte gAreaRoomMap_MinishCracks_16
	.4byte gAreaRoomMap_MinishCracks_17

gAreaRoomMap_ArmosInteriors_0:: @ 08104E38
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsEntranceNorth_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsEntranceNorth_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_1:: @ 08104E50
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsEntranceSouth_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsEntranceSouth_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_2:: @ 08104E68
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsLeft_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsLeft_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_3:: @ 08104E80
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsMiddleLeft_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsMiddleLeft_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_4:: @ 08104E98
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsMiddleRight_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsMiddleRight_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_5:: @ 08104EB0
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsRight_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsRight_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_6:: @ 08104EC8
	map_bottom offset_gAreaRoomMap_ArmosInteriors_6_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_6_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_7:: @ 08104EE0
	map_bottom offset_gAreaRoomMap_ArmosInteriors_RuinsGrassPath_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_RuinsGrassPath_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_8:: @ 08104EF8
	map_bottom offset_gAreaRoomMap_ArmosInteriors_8_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_8_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_9:: @ 08104F10
	map_bottom offset_gAreaRoomMap_ArmosInteriors_FortressLeft_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_FortressLeft_top, 0x12C, 1, 1

gAreaRoomMap_ArmosInteriors_10:: @ 08104F28
	map_bottom offset_gAreaRoomMap_ArmosInteriors_FortressRight_bottom, 0x12C, 0
	map_top offset_gAreaRoomMap_ArmosInteriors_FortressRight_top, 0x12C, 1, 1

gAreaRoomMaps_ArmosInteriors:: @ 08104F40
	.4byte gAreaRoomMap_ArmosInteriors_0
	.4byte gAreaRoomMap_ArmosInteriors_1
	.4byte gAreaRoomMap_ArmosInteriors_2
	.4byte gAreaRoomMap_ArmosInteriors_3
	.4byte gAreaRoomMap_ArmosInteriors_4
	.4byte gAreaRoomMap_ArmosInteriors_5
	.4byte gAreaRoomMap_ArmosInteriors_6
	.4byte gAreaRoomMap_ArmosInteriors_7
	.4byte gAreaRoomMap_ArmosInteriors_8
	.4byte gAreaRoomMap_ArmosInteriors_9
	.4byte gAreaRoomMap_ArmosInteriors_10

gAreaRoomMap_MinishRafters_0:: @ 08104F6C
	map_bottom offset_gAreaRoomMap_MinishRafters_Cafe_bottom, 0x3E0, 1, 1

gAreaRoomMap_MinishRafters_1:: @ 08104F78
	map_bottom offset_gAreaRoomMap_MinishRafters_Stockwell_bottom, 0x3E0, 1, 1

gAreaRoomMap_MinishRafters_2:: @ 08104F84
	map_bottom offset_gAreaRoomMap_MinishRafters_DrLeft_bottom, 0x3E0, 1, 1

gAreaRoomMap_MinishRafters_3:: @ 08104F90
	map_bottom offset_gAreaRoomMap_MinishRafters_Bakery_bottom, 0x3E0, 1, 1

gAreaRoomMaps_MinishRafters:: @ 08104F9C
	.4byte gAreaRoomMap_MinishRafters_0
	.4byte gAreaRoomMap_MinishRafters_1
	.4byte gAreaRoomMap_MinishRafters_2
	.4byte gAreaRoomMap_MinishRafters_3

gAreaRoomMap_GoronCave_0:: @ 08104FAC
	map_bottom offset_gAreaRoomMap_GoronCave_Stairs_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_GoronCave_Stairs_top, 0x12C, 1, 1

gAreaRoomMap_GoronCave_1:: @ 08104FC4
	map_bottom offset_gAreaRoomMap_GoronCave_Main_bottom, 0x546, 1
	map_top offset_gAreaRoomMap_GoronCave_Main_top, 0x546, 1, 1

gAreaRoomMaps_GoronCave:: @ 08104FDC
	.4byte gAreaRoomMap_GoronCave_0
	.4byte gAreaRoomMap_GoronCave_1

gAreaRoomMap_WindTribeTower_0:: @ 08104FE4
	map_bottom offset_gAreaRoomMap_WindTribeTower_Entrance_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_WindTribeTower_Entrance_top, 0x276, 1, 1

gAreaRoomMap_WindTribeTower_1:: @ 08104FFC
	map_bottom offset_gAreaRoomMap_WindTribeTower_Floor1_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_WindTribeTower_Floor1_top, 0x276, 1, 1

gAreaRoomMap_WindTribeTower_2:: @ 08105014
	map_bottom offset_gAreaRoomMap_WindTribeTower_Floor2_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_WindTribeTower_Floor2_top, 0x276, 1, 1

gAreaRoomMap_WindTribeTower_3:: @ 0810502C
	map_bottom offset_gAreaRoomMap_WindTribeTower_Floor3_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_WindTribeTower_Floor3_top, 0x276, 1, 1

gAreaRoomMaps_WindTribeTower:: @ 08105044
	.4byte gAreaRoomMap_WindTribeTower_0
	.4byte gAreaRoomMap_WindTribeTower_1
	.4byte gAreaRoomMap_WindTribeTower_2
	.4byte gAreaRoomMap_WindTribeTower_3

gAreaRoomMap_WindTribeTowerRoof_0:: @ 08105054
	map_bottom offset_gAreaRoomMap_WindTribeTowerRoof_0_bottom, 0x30C, 1
	map_top offset_gAreaRoomMap_WindTribeTowerRoof_0_top, 0x30C, 1, 1

gAreaRoomMaps_WindTribeTowerRoof:: @ 0810506C
	.4byte gAreaRoomMap_WindTribeTowerRoof_0

gAreaRoomMap_MinishCaves_0:: @ 08105070
	map_bottom offset_gAreaRoomMap_MinishCaves_BeanPesto_bottom, 0x474, 1
	map_top offset_gAreaRoomMap_MinishCaves_BeanPesto_top, 0x474, 1, 1

gAreaRoomMap_MinishCaves_1:: @ 08105088
	map_bottom offset_gAreaRoomMap_MinishCaves_SoutheastWater1_bottom, 0x41A, 1
	map_top offset_gAreaRoomMap_MinishCaves_SoutheastWater1_top, 0x41A, 1, 1

gAreaRoomMap_MinishCaves_2:: @ 081050A0
	map_bottom offset_gAreaRoomMap_MinishCaves_2_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_MinishCaves_2_top, 0x1FE, 1, 1

gAreaRoomMap_MinishCaves_3:: @ 081050B8
	map_bottom offset_gAreaRoomMap_MinishCaves_Ruins_bottom, 0x4CE, 1
	map_top offset_gAreaRoomMap_MinishCaves_Ruins_top, 0x4CE, 1, 1

gAreaRoomMap_MinishCaves_4:: @ 081050D0
	map_bottom offset_gAreaRoomMap_MinishCaves_OutsideLinksHouse_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_MinishCaves_OutsideLinksHouse_top, 0x1C2, 1, 1

gAreaRoomMap_MinishCaves_5:: @ 081050E8
	map_bottom offset_gAreaRoomMap_MinishCaves_MinishWoodsNorth1_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_MinishCaves_MinishWoodsNorth1_top, 0x258, 1, 1

gAreaRoomMap_MinishCaves_6:: @ 08105100
	map_bottom offset_gAreaRoomMap_MinishCaves_6_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_MinishCaves_6_top, 0x258, 1, 1

gAreaRoomMap_MinishCaves_7:: @ 08105118
	map_bottom offset_gAreaRoomMap_MinishCaves_LakeHyliaNorth_bottom, 0x744, 1
	map_top offset_gAreaRoomMap_MinishCaves_LakeHyliaNorth_top, 0x744, 1, 1

gAreaRoomMap_MinishCaves_8:: @ 08105130
	map_bottom offset_gAreaRoomMap_MinishCaves_LakeHyliaLibrari_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_MinishCaves_LakeHyliaLibrari_top, 0x4B0, 1, 1

gAreaRoomMap_MinishCaves_9:: @ 08105148
	map_bottom offset_gAreaRoomMap_MinishCaves_MinishWoodsSouthwest_bottom, 0x618, 1
	map_top offset_gAreaRoomMap_MinishCaves_MinishWoodsSouthwest_top, 0x618, 1, 1

gAreaRoomMaps_MinishCaves:: @ 08105160
	.4byte gAreaRoomMap_MinishCaves_0
	.4byte gAreaRoomMap_MinishCaves_1
	.4byte gAreaRoomMap_MinishCaves_2
	.4byte gAreaRoomMap_MinishCaves_3
	.4byte gAreaRoomMap_MinishCaves_4
	.4byte gAreaRoomMap_MinishCaves_5
	.4byte gAreaRoomMap_MinishCaves_6
	.4byte gAreaRoomMap_MinishCaves_7
	.4byte gAreaRoomMap_MinishCaves_8
	.4byte gAreaRoomMap_MinishCaves_9

gAreaRoomMap_CastleGardenMinishHoles_0:: @ 08105188
	map_bottom offset_gAreaRoomMap_CastleGardenMinishHoles_0_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_CastleGardenMinishHoles_0_top, 0x1C2, 1, 1

gAreaRoomMap_CastleGardenMinishHoles_1:: @ 081051A0
	map_bottom offset_gAreaRoomMap_CastleGardenMinishHoles_1_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_CastleGardenMinishHoles_1_top, 0x1C2, 1, 1

gAreaRoomMaps_CastleGardenMinishHoles:: @ 081051B8
	.4byte gAreaRoomMap_CastleGardenMinishHoles_0
	.4byte gAreaRoomMap_CastleGardenMinishHoles_1

gAreaRoomMap_37_0:: @ 081051C0
	map_bottom offset_gAreaRoomMap_37_0_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_37_0_top, 0x1C2, 1, 1

gAreaRoomMap_37_1:: @ 081051D8
	map_bottom offset_gAreaRoomMap_37_1_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_37_1_top, 0x1C2, 1, 1

gAreaRoomMaps_37:: @ 081051F0
	.4byte gAreaRoomMap_37_0
	.4byte gAreaRoomMap_37_1

gAreaRoomMap_EzloCutscene_0:: @ 081051F8
	map_bottom offset_gAreaRoomMap_EzloCutscene_0_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_EzloCutscene_0_top, 0x258, 1, 1

gAreaRoomMaps_EzloCutscene:: @ 08105210
	.4byte gAreaRoomMap_EzloCutscene_0

gAreaRoomMap_HyruleTownUnderground_0:: @ 08105214
	map_bottom offset_gAreaRoomMap_HyruleTownUnderground_0_bottom, 0xE10, 1
	map_top offset_gAreaRoomMap_HyruleTownUnderground_0_top, 0xE10, 1, 1

gAreaRoomMap_HyruleTownUnderground_1:: @ 0810522C
	map_bottom offset_gAreaRoomMap_HyruleTownUnderground_1_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HyruleTownUnderground_1_top, 0x12C, 1, 1

gAreaRoomMaps_HyruleTownUnderground:: @ 08105244
	.4byte gAreaRoomMap_HyruleTownUnderground_0
	.4byte gAreaRoomMap_HyruleTownUnderground_1

gAreaRoomMap_GardenFountains_0:: @ 0810524C
	map_bottom offset_gAreaRoomMap_GardenFountains_East_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_GardenFountains_East_top, 0x12C, 1, 1

gAreaRoomMap_GardenFountains_1:: @ 08105264
	map_bottom offset_gAreaRoomMap_GardenFountains_West_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_GardenFountains_West_top, 0x12C, 1, 1

gAreaRoomMaps_GardenFountains:: @ 0810527C
	.4byte gAreaRoomMap_GardenFountains_0
	.4byte gAreaRoomMap_GardenFountains_1

gAreaRoomMap_HyruleCastleCellar_0:: @ 08105284
	map_bottom offset_gAreaRoomMap_HyruleCastleCellar_0_bottom, 0x3C0, 1
	map_top offset_gAreaRoomMap_HyruleCastleCellar_0_top, 0x3C0, 1, 1

gAreaRoomMap_HyruleCastleCellar_1:: @ 0810529C
	map_bottom offset_gAreaRoomMap_HyruleCastleCellar_1_bottom, 0x1E0, 1
	map_top offset_gAreaRoomMap_HyruleCastleCellar_1_top, 0x1E0, 1, 1

gAreaRoomMaps_HyruleCastleCellar:: @ 081052B4
	.4byte gAreaRoomMap_HyruleCastleCellar_0
	.4byte gAreaRoomMap_HyruleCastleCellar_1

gAreaRoomMap_SimonsSimulation_0:: @ 081052BC
	map_bottom offset_gAreaRoomMap_SimonsSimulation_0_bottom, 0x23A, 1
	map_top offset_gAreaRoomMap_SimonsSimulation_0_top, 0x23A, 1, 1

gAreaRoomMaps_SimonsSimulation:: @ 081052D4
	.4byte gAreaRoomMap_SimonsSimulation_0

gAreaRoomMap_40_0:: @ 081052D8
	map_bottom offset_gAreaRoomMap_40_0_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_40_0_top, 0x286, 1, 1

gAreaRoomMap_40_1:: @ 081052F0
	map_bottom offset_gAreaRoomMap_40_1_bottom, 0x30E, 1
	map_top offset_gAreaRoomMap_40_1_top, 0x30E, 1, 1

gAreaRoomMap_40_2:: @ 08105308
	map_bottom offset_gAreaRoomMap_40_2_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_40_2_top, 0x286, 1, 1

gAreaRoomMap_40_3:: @ 08105320
	map_bottom offset_gAreaRoomMap_40_3_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_40_3_top, 0x286, 1, 1

gAreaRoomMap_40_4:: @ 08105338
	map_bottom offset_gAreaRoomMap_40_4_bottom, 0x30E, 1
	map_top offset_gAreaRoomMap_40_4_top, 0x30E, 1, 1

gAreaRoomMap_40_5:: @ 08105350
	map_bottom offset_gAreaRoomMap_40_5_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_40_5_top, 0x286, 1, 1

gAreaRoomMap_40_6:: @ 08105368
	map_bottom offset_gAreaRoomMap_40_6_bottom, 0x520, 1
	map_top offset_gAreaRoomMap_40_6_top, 0x520, 1, 1

gAreaRoomMap_40_7:: @ 08105380
	map_bottom offset_gAreaRoomMap_40_7_bottom, 0x28A, 1
	map_top offset_gAreaRoomMap_40_7_top, 0x28A, 1, 1

gAreaRoomMap_40_8:: @ 08105398
	map_bottom offset_gAreaRoomMap_40_8_bottom, 0x200, 1
	map_top offset_gAreaRoomMap_40_8_top, 0x200, 1, 1

gAreaRoomMaps_40:: @ 081053B0
	.4byte gAreaRoomMap_40_0
	.4byte gAreaRoomMap_40_1
	.4byte gAreaRoomMap_40_2
	.4byte gAreaRoomMap_40_3
	.4byte gAreaRoomMap_40_4
	.4byte gAreaRoomMap_40_5
	.4byte gAreaRoomMap_40_6
	.4byte gAreaRoomMap_40_7
	.4byte gAreaRoomMap_40_8

gAreaRoomMap_DeepwoodShrine_0:: @ 081053D4
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Madderpillar_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Madderpillar_top, 0x1FE, 1, 1

gAreaRoomMap_DeepwoodShrine_1:: @ 081053EC
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_BluePortal_bottom, 0x2EE, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_BluePortal_top, 0x2EE, 1, 1

gAreaRoomMap_DeepwoodShrine_2:: @ 08105404
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_StairsToB1_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_StairsToB1_top, 0x276, 1, 1

gAreaRoomMap_DeepwoodShrine_3:: @ 0810541C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_PotBridge_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_PotBridge_top, 0x1FE, 1, 1

gAreaRoomMap_DeepwoodShrine_4:: @ 08105434
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_DoubleStatue_bottom, 0x154, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_DoubleStatue_top, 0x154, 1, 1

gAreaRoomMap_DeepwoodShrine_5:: @ 0810544C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Map_bottom, 0x352, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Map_top, 0x352, 1, 1

gAreaRoomMap_DeepwoodShrine_6:: @ 08105464
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Barrel_bottom, 0x5AA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Barrel_top, 0x5AA, 1, 1

gAreaRoomMap_DeepwoodShrine_7:: @ 0810547C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Button_bottom, 0x352, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Button_top, 0x352, 1, 1

gAreaRoomMap_DeepwoodShrine_8:: @ 08105494
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Mulldozer_bottom, 0x198, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Mulldozer_top, 0x198, 1, 1

gAreaRoomMap_DeepwoodShrine_9:: @ 081054AC
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Pillars_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Pillars_top, 0x1BA, 1, 1

gAreaRoomMap_DeepwoodShrine_10:: @ 081054C4
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Lever_bottom, 0x2CA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Lever_top, 0x2CA, 1, 1

gAreaRoomMap_DeepwoodShrine_11:: @ 081054DC
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Entrance_bottom, 0x2CA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Entrance_top, 0x2CA, 1, 1

gAreaRoomMap_DeepwoodShrine_12:: @ 081054F4
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Torches_bottom, 0x2CA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Torches_top, 0x2CA, 1, 1

gAreaRoomMap_DeepwoodShrine_13:: @ 0810550C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_BossKey_bottom, 0x2EE, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_BossKey_top, 0x2EE, 1, 1

gAreaRoomMap_DeepwoodShrine_14:: @ 08105524
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_Compass_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_Compass_top, 0x276, 1, 1

gAreaRoomMap_DeepwoodShrine_15:: @ 0810553C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_13_bottom, 0x198, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_13_top, 0x198, 1, 1

gAreaRoomMap_DeepwoodShrine_16:: @ 08105554
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_LilyPadWest_bottom, 0x5AA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_LilyPadWest_top, 0x5AA, 1, 1

gAreaRoomMap_DeepwoodShrine_17:: @ 0810556C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_LilyPadEast_bottom, 0x264, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_LilyPadEast_top, 0x264, 1, 1

gAreaRoomMap_DeepwoodShrineBoss_0:: @ 08105584
	map_bottom offset_gAreaRoomMap_DeepwoodShrineBoss_Main_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_DeepwoodShrineBoss_Main_top, 0x1FE, 1, 1

gAreaRoomMap_DeepwoodShrine_18:: @ 0810559C
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_BossDoor_bottom, 0x2CA, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_BossDoor_top, 0x2CA, 1, 1

gAreaRoomMap_DeepwoodShrine_19:: @ 081055B4
	map_bottom offset_gAreaRoomMap_DeepwoodShrine_InsideBarrel_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_DeepwoodShrine_InsideBarrel_top, 0x12C, 1, 1

gAreaRoomMap_DeepwoodShrineEntry_0:: @ 081055CC
	map_bottom offset_gAreaRoomMap_DeepwoodShrineEntry_Main_bottom, 0x1C2, 0
	map_top offset_gAreaRoomMap_DeepwoodShrineEntry_Main_top, 0x1C2, 1, 1

gAreaRoomMaps_DeepwoodShrine:: @ 081055E4
	.4byte gAreaRoomMap_DeepwoodShrine_0
	.4byte gAreaRoomMap_DeepwoodShrine_1
	.4byte gAreaRoomMap_DeepwoodShrine_2
	.4byte gAreaRoomMap_DeepwoodShrine_3
	.4byte gAreaRoomMap_DeepwoodShrine_4
	.4byte gAreaRoomMap_DeepwoodShrine_5
	.4byte gAreaRoomMap_DeepwoodShrine_6
	.4byte gAreaRoomMap_DeepwoodShrine_7
	.4byte gAreaRoomMap_DeepwoodShrine_8
	.4byte gAreaRoomMap_DeepwoodShrine_9
	.4byte gAreaRoomMap_DeepwoodShrine_10
	.4byte gAreaRoomMap_DeepwoodShrine_11
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_DeepwoodShrine_12
	.4byte gAreaRoomMap_DeepwoodShrine_13
	.4byte gAreaRoomMap_DeepwoodShrine_14
	.4byte gAreaRoomMap_DeepwoodShrine_15
	.4byte gAreaRoomMap_DeepwoodShrine_16
	.4byte gAreaRoomMap_DeepwoodShrine_17
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_DeepwoodShrine_18
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_Unused
	.4byte gAreaRoomMap_DeepwoodShrine_19

gAreaRoomMaps_DeepwoodShrineBoss:: @ 08105668
	.4byte gAreaRoomMap_DeepwoodShrineBoss_0

gAreaRoomMaps_DeepwoodShrineEntry:: @ 0810566C
	.4byte gAreaRoomMap_DeepwoodShrineEntry_0

gAreaRoomMap_CaveOfFlames_0:: @ 08105670
	map_bottom offset_gAreaRoomMap_CaveOfFlames_AfterCane_bottom, 0x30E, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_AfterCane_top, 0x30E, 1, 1

gAreaRoomMap_CaveOfFlames_1:: @ 08105688
	map_bottom offset_gAreaRoomMap_CaveOfFlames_SpinyChu_bottom, 0x30E, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_SpinyChu_top, 0x30E, 1, 1

gAreaRoomMap_CaveOfFlames_2:: @ 081056A0
	map_bottom offset_gAreaRoomMap_CaveOfFlames_CartToSpinyChu_bottom, 0x4AC, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_CartToSpinyChu_top, 0x4AC, 1, 1

gAreaRoomMap_CaveOfFlames_3:: @ 081056B8
	map_bottom offset_gAreaRoomMap_CaveOfFlames_Entrance_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_Entrance_top, 0x1BA, 1, 1

gAreaRoomMap_CaveOfFlames_4:: @ 081056D0
	map_bottom offset_gAreaRoomMap_CaveOfFlames_MainCart_bottom, 0x74E, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_MainCart_top, 0x74E, 1, 1

gAreaRoomMap_CaveOfFlames_5:: @ 081056E8
	map_bottom offset_gAreaRoomMap_CaveOfFlames_NorthEntrance_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_NorthEntrance_top, 0x1BA, 1, 1

gAreaRoomMap_CaveOfFlames_6:: @ 08105700
	map_bottom offset_gAreaRoomMap_CaveOfFlames_CartWest_bottom, 0x5B6, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_CartWest_top, 0x5B6, 1, 1

gAreaRoomMap_CaveOfFlames_7:: @ 08105718
	map_bottom offset_gAreaRoomMap_CaveOfFlames_HelmasaurFight_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_HelmasaurFight_top, 0x1FE, 1, 1

gAreaRoomMap_CaveOfFlames_8:: @ 08105730
	map_bottom offset_gAreaRoomMap_CaveOfFlames_RollobiteLavaRoom_bottom, 0x508, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_RollobiteLavaRoom_top, 0x508, 1, 1

gAreaRoomMap_CaveOfFlames_9:: @ 08105748
	map_bottom offset_gAreaRoomMap_CaveOfFlames_MinishLavaRoom_bottom, 0x508, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_MinishLavaRoom_top, 0x508, 1, 1

gAreaRoomMap_CaveOfFlames_10:: @ 08105760
	map_bottom offset_gAreaRoomMap_CaveOfFlames_MinishSpikes_bottom, 0x9D8, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_MinishSpikes_top, 0x9D8, 1, 1

gAreaRoomMap_CaveOfFlames_11:: @ 08105778
	map_bottom offset_gAreaRoomMap_CaveOfFlames_TompasDoom_bottom, 0x4EC, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_TompasDoom_top, 0x4EC, 1, 1

gAreaRoomMap_CaveOfFlames_12:: @ 08105790
	map_bottom offset_gAreaRoomMap_CaveOfFlames_BeforeGleerok_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_BeforeGleerok_top, 0x276, 1, 1

gAreaRoomMap_CaveOfFlames_13:: @ 081057A8
	map_bottom offset_gAreaRoomMap_CaveOfFlames_BosskeyPath1_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_BosskeyPath1_top, 0x276, 1, 1

gAreaRoomMap_CaveOfFlames_14:: @ 081057C0
	map_bottom offset_gAreaRoomMap_CaveOfFlames_BosskeyPath2_bottom, 0x276, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_BosskeyPath2_top, 0x276, 1, 1

gAreaRoomMap_CaveOfFlames_15:: @ 081057D8
	map_bottom offset_gAreaRoomMap_CaveOfFlames_Compass_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_Compass_top, 0x186, 1, 1

gAreaRoomMap_CaveOfFlames_16:: @ 081057F0
	map_bottom offset_gAreaRoomMap_CaveOfFlames_BobOmbWall_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_BobOmbWall_top, 0x186, 1, 1

gAreaRoomMap_CaveOfFlames_17:: @ 08105808
	map_bottom offset_gAreaRoomMap_CaveOfFlames_BossDoor_bottom, 0x9D8, 1
	map_top offset_gAreaRoomMap_CaveOfFlames_BossDoor_top, 0x9D8, 1, 1

gAreaRoomMaps_CaveOfFlames:: @ 08105820
	.4byte gAreaRoomMap_CaveOfFlames_0
	.4byte gAreaRoomMap_CaveOfFlames_1
	.4byte gAreaRoomMap_CaveOfFlames_2
	.4byte gAreaRoomMap_CaveOfFlames_3
	.4byte gAreaRoomMap_CaveOfFlames_4
	.4byte gAreaRoomMap_CaveOfFlames_5
	.4byte gAreaRoomMap_CaveOfFlames_6
	.4byte gAreaRoomMap_CaveOfFlames_7
	.4byte gAreaRoomMap_CaveOfFlames_8
	.4byte gAreaRoomMap_CaveOfFlames_9
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_CaveOfFlames_10
	.4byte gAreaRoomMap_CaveOfFlames_11
	.4byte gAreaRoomMap_CaveOfFlames_12
	.4byte gAreaRoomMap_CaveOfFlames_13
	.4byte gAreaRoomMap_CaveOfFlames_14
	.4byte gAreaRoomMap_CaveOfFlames_15
	.4byte gAreaRoomMap_CaveOfFlames_16
	.4byte gAreaRoomMap_CaveOfFlames_17

gAreaRoomMap_CaveOfFlamesBoss_0:: @ 08105880
	map_bottom offset_gAreaRoomMap_CaveOfFlamesBoss_0_bottom, 0x360, 1
	map_top offset_gAreaRoomMap_CaveOfFlamesBoss_0_top, 0x360, 1, 1

gAreaRoomMaps_CaveOfFlamesBoss:: @ 08105898
	.4byte gAreaRoomMap_CaveOfFlamesBoss_0

gAreaRoomMap_FortressOfWinds_0:: @ 0810589C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_DoubleEyegore_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_DoubleEyegore_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_1:: @ 081058B4
	map_bottom offset_gAreaRoomMap_FortressOfWinds_BeforeMazaal_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_BeforeMazaal_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_2:: @ 081058CC
	map_bottom offset_gAreaRoomMap_FortressOfWinds_EastKeyLever_bottom, 0x804, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_EastKeyLever_top, 0x804, 1, 1

gAreaRoomMap_FortressOfWinds_3:: @ 081058E4
	map_bottom offset_gAreaRoomMap_FortressOfWinds_PitPlatforms_bottom, 0x1DC, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_PitPlatforms_top, 0x1DC, 1, 1

gAreaRoomMap_FortressOfWinds_4:: @ 081058FC
	map_bottom offset_gAreaRoomMap_FortressOfWinds_WestKeyLever_bottom, 0x364, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_WestKeyLever_top, 0x364, 1, 1

gAreaRoomMap_FortressOfWinds_5:: @ 08105914
	map_bottom offset_gAreaRoomMap_FortressOfWinds_DarknutRoom_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_DarknutRoom_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_6:: @ 0810592C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_ArrowEyeBridge_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_ArrowEyeBridge_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_7:: @ 08105944
	map_bottom offset_gAreaRoomMap_FortressOfWinds_NorthSplitPathPit_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_NorthSplitPathPit_top, 0x374, 1, 1

gAreaRoomMap_FortressOfWinds_8:: @ 0810595C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_WallmasterMinishPortal_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_WallmasterMinishPortal_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_9:: @ 08105974
	map_bottom offset_gAreaRoomMap_FortressOfWinds_PillarCloneButtons_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_PillarCloneButtons_top, 0x374, 1, 1

gAreaRoomMap_FortressOfWinds_10:: @ 0810598C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_RotatingSpikeTraps_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_RotatingSpikeTraps_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_11:: @ 081059A4
	map_bottom offset_gAreaRoomMap_FortressOfWinds_Mazaal_bottom, 0x256, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_Mazaal_top, 0x256, 1, 1

gAreaRoomMap_FortressOfWinds_12:: @ 081059BC
	map_bottom offset_gAreaRoomMap_FortressOfWinds_Stalfos_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_Stalfos_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_13:: @ 081059D4
	map_bottom offset_gAreaRoomMap_FortressOfWinds_EntranceMoleMitts_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_EntranceMoleMitts_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_14:: @ 081059EC
	map_bottom offset_gAreaRoomMap_FortressOfWinds_Main2f_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_Main2f_top, 0x374, 1, 1

gAreaRoomMap_FortressOfWinds_15:: @ 08105A04
	map_bottom offset_gAreaRoomMap_FortressOfWinds_MinishHole_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_MinishHole_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_16:: @ 08105A1C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_BossKey_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_BossKey_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_17:: @ 08105A34
	map_bottom offset_gAreaRoomMap_FortressOfWinds_WestStairs2f_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_WestStairs2f_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_18:: @ 08105A4C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_EastStairs2f_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_EastStairs2f_top, 0x1BA, 1, 1

gAreaRoomMap_FortressOfWinds_19:: @ 08105A64
	map_bottom offset_gAreaRoomMap_FortressOfWinds_WestStairs1f_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_WestStairs1f_top, 0x186, 1, 1

gAreaRoomMap_FortressOfWinds_20:: @ 08105A7C
	map_bottom offset_gAreaRoomMap_FortressOfWinds_CenterStairs1f_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_CenterStairs1f_top, 0x186, 1, 1

gAreaRoomMap_FortressOfWinds_21:: @ 08105A94
	map_bottom offset_gAreaRoomMap_FortressOfWinds_EastStairs1f_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_EastStairs1f_top, 0x186, 1, 1

gAreaRoomMap_FortressOfWinds_22:: @ 08105AAC
	map_bottom offset_gAreaRoomMap_FortressOfWinds_Wizzrobe_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_Wizzrobe_top, 0x186, 1, 1

gAreaRoomMap_FortressOfWinds_23:: @ 08105AC4
	map_bottom offset_gAreaRoomMap_FortressOfWinds_HeartPiece_bottom, 0x1A0, 1
	map_top offset_gAreaRoomMap_FortressOfWinds_HeartPiece_top, 0x1A0, 1, 1

gAreaRoomMaps_FortressOfWinds:: @ 08105ADC
	.4byte gAreaRoomMap_FortressOfWinds_0
	.4byte gAreaRoomMap_FortressOfWinds_1
	.4byte gAreaRoomMap_FortressOfWinds_2
	.4byte gAreaRoomMap_FortressOfWinds_3
	.4byte gAreaRoomMap_FortressOfWinds_4
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_FortressOfWinds_5
	.4byte gAreaRoomMap_FortressOfWinds_6
	.4byte gAreaRoomMap_FortressOfWinds_7
	.4byte gAreaRoomMap_FortressOfWinds_8
	.4byte gAreaRoomMap_FortressOfWinds_9
	.4byte gAreaRoomMap_FortressOfWinds_10
	.4byte gAreaRoomMap_FortressOfWinds_11
	.4byte gAreaRoomMap_FortressOfWinds_12
	.4byte gAreaRoomMap_FortressOfWinds_13
	.4byte gAreaRoomMap_FortressOfWinds_14
	.4byte gAreaRoomMap_FortressOfWinds_15
	.4byte gAreaRoomMap_FortressOfWinds_16
	.4byte gAreaRoomMap_FortressOfWinds_17
	.4byte gAreaRoomMap_FortressOfWinds_18
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_FortressOfWinds_19
	.4byte gAreaRoomMap_FortressOfWinds_20
	.4byte gAreaRoomMap_FortressOfWinds_21
	.4byte gAreaRoomMap_FortressOfWinds_22
	.4byte gAreaRoomMap_FortressOfWinds_23

gAreaRoomMap_FortressOfWindsTop_0:: @ 08105B70
	map_bottom offset_gAreaRoomMap_FortressOfWindsTop_Main_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_FortressOfWindsTop_Main_top, 0x4B0, 1, 1

gAreaRoomMaps_FortressOfWindsTop:: @ 08105B88
	.4byte gAreaRoomMap_FortressOfWindsTop_0

gAreaRoomMap_InnerMazaal_0:: @ 08105B8C
	map_bottom offset_gAreaRoomMap_InnerMazaal_Main_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_InnerMazaal_Main_top, 0x286, 1, 1

gAreaRoomMap_InnerMazaal_1:: @ 08105BA4
	map_bottom offset_gAreaRoomMap_InnerMazaal_Phase1_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_InnerMazaal_Phase1_top, 0x286, 1, 1

gAreaRoomMaps_InnerMazaal:: @ 08105BBC
	.4byte gAreaRoomMap_InnerMazaal_0
	.4byte gAreaRoomMap_InnerMazaal_1

gAreaRoomMap_TempleOfDroplets_0:: @ 08105BC4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_WestHole_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_WestHole_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_1:: @ 08105BDC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_NorthSplitRoom_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_NorthSplitRoom_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_2:: @ 08105BF4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_EastHole_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_EastHole_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_3:: @ 08105C0C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_Entrance_bottom, 0x6B4, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_Entrance_top, 0x6B4, 1, 1

gAreaRoomMap_TempleOfDroplets_4:: @ 08105C24
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_NorthwestStairs_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_NorthwestStairs_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_5:: @ 08105C3C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_ScissorsMiniboss_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_ScissorsMiniboss_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_6:: @ 08105C54
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_WaterfallNorthwest_bottom, 0x30C, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_WaterfallNorthwest_top, 0x30C, 1, 1

gAreaRoomMap_TempleOfDroplets_7:: @ 08105C6C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_WaterfallNortheast_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_WaterfallNortheast_top, 0x374, 1, 1

gAreaRoomMap_TempleOfDroplets_8:: @ 08105C84
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_Element_bottom, 0x948, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_Element_top, 0x948, 1, 1

gAreaRoomMap_TempleOfDroplets_9:: @ 08105C9C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_IceCorner_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_IceCorner_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_10:: @ 08105CB4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_IcePitMaze_bottom, 0x492, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_IcePitMaze_top, 0x492, 1, 1

gAreaRoomMap_TempleOfDroplets_11:: @ 08105CCC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_HoleToBlueChuKey_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_HoleToBlueChuKey_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_12:: @ 08105CE4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_WestWaterfallSoutheast_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_WestWaterfallSoutheast_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_13:: @ 08105CFC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_WestWaterfallSouthwest_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_WestWaterfallSouthwest_top, 0x374, 1, 1

gAreaRoomMap_TempleOfDroplets_14:: @ 08105D14
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BigOcto_bottom, 0x420, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BigOcto_top, 0x420, 1, 1

gAreaRoomMap_TempleOfDroplets_15:: @ 08105D2C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_ToBlueChu_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_ToBlueChu_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_16:: @ 08105D44
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BlueChu_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BlueChu_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_17:: @ 08105D5C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BlueChuKey_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BlueChuKey_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_18:: @ 08105D74
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BossKey_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BossKey_top, 0x374, 1, 1

gAreaRoomMap_TempleOfDroplets_19:: @ 08105D8C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_NorthSmallKey_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_NorthSmallKey_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_20:: @ 08105DA4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BlockCloneButtonPuzzle_bottom, 0x35A, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BlockCloneButtonPuzzle_top, 0x35A, 1, 1

gAreaRoomMap_TempleOfDroplets_21:: @ 08105DBC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BlockClonePuzzle_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BlockClonePuzzle_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_22:: @ 08105DD4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BlockCloneIceBridge_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BlockCloneIceBridge_top, 0x374, 1, 1

gAreaRoomMap_TempleOfDroplets_23:: @ 08105DEC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_StairsToScissorsMiniboss_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_StairsToScissorsMiniboss_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_24:: @ 08105E04
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_SpikeBarFlipperRoom_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_SpikeBarFlipperRoom_top, 0x4B0, 1, 1

gAreaRoomMap_TempleOfDroplets_25:: @ 08105E1C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_9Lanterns_bottom, 0x1A4, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_9Lanterns_top, 0x1A4, 1, 1

gAreaRoomMap_TempleOfDroplets_26:: @ 08105E34
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_LilypadIceBlocks_bottom, 0xA0E, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_LilypadIceBlocks_top, 0xA0E, 1, 1

gAreaRoomMap_TempleOfDroplets_27:: @ 08105E4C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_29_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_29_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_28:: @ 08105E64
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_MulldozersFireBars_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_MulldozersFireBars_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_29:: @ 08105E7C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_DarkMaze_bottom, 0x492, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_DarkMaze_top, 0x492, 1, 1

gAreaRoomMap_TempleOfDroplets_30:: @ 08105E94
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_TwinMadderpillars_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_TwinMadderpillars_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_31:: @ 08105EAC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_AfterTwinMadderpillars_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_AfterTwinMadderpillars_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_32:: @ 08105EC4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BlueChuKeyLever_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BlueChuKeyLever_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_33:: @ 08105EDC
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_MulldozerKey_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_MulldozerKey_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_34:: @ 08105EF4
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_BeforeTwinMadderpillars_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_BeforeTwinMadderpillars_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_35:: @ 08105F0C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_LilypadB2West_bottom, 0x396, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_LilypadB2West_top, 0x396, 1, 1

gAreaRoomMap_TempleOfDroplets_36:: @ 08105F24
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_Compass_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_Compass_top, 0x1BA, 1, 1

gAreaRoomMap_TempleOfDroplets_37:: @ 08105F3C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_DarkScissorBeetles_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_DarkScissorBeetles_top, 0x186, 1, 1

gAreaRoomMap_TempleOfDroplets_38:: @ 08105F54
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_LilypadB2Middle_bottom, 0x39C, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_LilypadB2Middle_top, 0x39C, 1, 1

gAreaRoomMap_TempleOfDroplets_39:: @ 08105F6C
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_IceMadderpillar_bottom, 0x1DC, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_IceMadderpillar_top, 0x1DC, 1, 1

gAreaRoomMap_TempleOfDroplets_40:: @ 08105F84
	map_bottom offset_gAreaRoomMap_TempleOfDroplets_FlamebarBlockPuzzle_bottom, 0x1A0, 1
	map_top offset_gAreaRoomMap_TempleOfDroplets_FlamebarBlockPuzzle_top, 0x1A0, 1, 1

gAreaRoomMaps_TempleOfDroplets:: @ 08105F9C
	.4byte gAreaRoomMap_TempleOfDroplets_0
	.4byte gAreaRoomMap_TempleOfDroplets_1
	.4byte gAreaRoomMap_TempleOfDroplets_2
	.4byte gAreaRoomMap_TempleOfDroplets_3
	.4byte gAreaRoomMap_TempleOfDroplets_4
	.4byte gAreaRoomMap_TempleOfDroplets_5
	.4byte gAreaRoomMap_TempleOfDroplets_6
	.4byte gAreaRoomMap_TempleOfDroplets_7
	.4byte gAreaRoomMap_TempleOfDroplets_8
	.4byte gAreaRoomMap_TempleOfDroplets_9
	.4byte gAreaRoomMap_TempleOfDroplets_10
	.4byte gAreaRoomMap_TempleOfDroplets_11
	.4byte gAreaRoomMap_TempleOfDroplets_12
	.4byte gAreaRoomMap_TempleOfDroplets_13
	.4byte gAreaRoomMap_TempleOfDroplets_14
	.4byte gAreaRoomMap_TempleOfDroplets_15
	.4byte gAreaRoomMap_TempleOfDroplets_16
	.4byte gAreaRoomMap_TempleOfDroplets_17
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_TempleOfDroplets_18
	.4byte gAreaRoomMap_TempleOfDroplets_19
	.4byte gAreaRoomMap_TempleOfDroplets_20
	.4byte gAreaRoomMap_TempleOfDroplets_21
	.4byte gAreaRoomMap_TempleOfDroplets_22
	.4byte gAreaRoomMap_TempleOfDroplets_23
	.4byte gAreaRoomMap_TempleOfDroplets_24
	.4byte gAreaRoomMap_TempleOfDroplets_25
	.4byte gAreaRoomMap_TempleOfDroplets_26
	.4byte gAreaRoomMap_TempleOfDroplets_27
	.4byte gAreaRoomMap_TempleOfDroplets_28
	.4byte gAreaRoomMap_TempleOfDroplets_29
	.4byte gAreaRoomMap_TempleOfDroplets_30
	.4byte gAreaRoomMap_TempleOfDroplets_31
	.4byte gAreaRoomMap_TempleOfDroplets_32
	.4byte gAreaRoomMap_TempleOfDroplets_33
	.4byte gAreaRoomMap_TempleOfDroplets_34
	.4byte gAreaRoomMap_TempleOfDroplets_35
	.4byte gAreaRoomMap_TempleOfDroplets_36
	.4byte gAreaRoomMap_TempleOfDroplets_37
	.4byte gAreaRoomMap_TempleOfDroplets_38
	.4byte gAreaRoomMap_TempleOfDroplets_39
	.4byte gAreaRoomMap_TempleOfDroplets_40

gAreaRoomMap_61_0:: @ 08106078
	map_bottom offset_gAreaRoomMap_Null61_0_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_Null61_0_top, 0x1C2, 1, 1

gAreaRoomMaps_61:: @ 08106090
	.4byte gAreaRoomMap_61_0

gAreaRoomMap_HyruleTownMinishCaves_0:: @ 08106094
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_0_bottom, 0x330, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_0_top, 0x330, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_1:: @ 081060AC
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_1_bottom, 0x2D0, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_1_top, 0x2D0, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_2:: @ 081060C4
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_2_bottom, 0x242, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_2_top, 0x242, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_3:: @ 081060DC
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_3_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_3_top, 0x1FE, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_4:: @ 081060F4
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_4_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_4_top, 0x1C2, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_5:: @ 0810610C
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_Unused10_bottom, 0x222, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_Unused10_top, 0x222, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_6:: @ 08106124
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_6_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_6_top, 0x1BA, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_7:: @ 0810613C
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_7_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_7_top, 0x186, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_8:: @ 08106154
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_8_bottom, 0x24C, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_8_top, 0x24C, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_9:: @ 0810616C
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_9_bottom, 0x1DC, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_9_top, 0x1DC, 1, 1

gAreaRoomMap_HyruleTownMinishCaves_10:: @ 08106184
	map_bottom offset_gAreaRoomMap_HyruleTownMinishCaves_10_bottom, 0x348, 1
	map_top offset_gAreaRoomMap_HyruleTownMinishCaves_10_top, 0x348, 1, 1

gAreaRoomMaps_HyruleTownMinishCaves:: @ 0810619C
	.4byte gAreaRoomMap_HyruleTownMinishCaves_0
	.4byte gAreaRoomMap_HyruleTownMinishCaves_1
	.4byte gAreaRoomMap_HyruleTownMinishCaves_2
	.4byte gAreaRoomMap_HyruleTownMinishCaves_3
	.4byte gAreaRoomMap_HyruleTownMinishCaves_4
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte gAreaRoomMap_HyruleTownMinishCaves_5
	.4byte gAreaRoomMap_HyruleTownMinishCaves_6
	.4byte gAreaRoomMap_HyruleTownMinishCaves_7
	.4byte gAreaRoomMap_HyruleTownMinishCaves_8
	.4byte gAreaRoomMap_HyruleTownMinishCaves_9
	.4byte gAreaRoomMap_HyruleTownMinishCaves_10

gAreaRoomMap_RoyalCrypt_0:: @ 081061F4
	map_bottom offset_gAreaRoomMap_RoyalCrypt_0_bottom, 0x532, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_0_top, 0x532, 1, 1

gAreaRoomMap_RoyalCrypt_1:: @ 0810620C
	map_bottom offset_gAreaRoomMap_RoyalCrypt_WaterRope_bottom, 0x1DC, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_WaterRope_top, 0x1DC, 1, 1

gAreaRoomMap_RoyalCrypt_2:: @ 08106224
	map_bottom offset_gAreaRoomMap_RoyalCrypt_Gibdo_bottom, 0x348, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_Gibdo_top, 0x348, 1, 1

gAreaRoomMap_RoyalCrypt_3:: @ 0810623C
	map_bottom offset_gAreaRoomMap_RoyalCrypt_3_bottom, 0x2F4, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_3_top, 0x2F4, 1, 1

gAreaRoomMap_RoyalCrypt_4:: @ 08106254
	map_bottom offset_gAreaRoomMap_RoyalCrypt_KeyBlock_bottom, 0x6F0, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_KeyBlock_top, 0x6F0, 1, 1

gAreaRoomMap_RoyalCrypt_5:: @ 0810626C
	map_bottom offset_gAreaRoomMap_RoyalCrypt_5_bottom, 0x2E4, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_5_top, 0x2E4, 1, 1

gAreaRoomMap_RoyalCrypt_6:: @ 08106284
	map_bottom offset_gAreaRoomMap_RoyalCrypt_6_bottom, 0x2E4, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_6_top, 0x2E4, 1, 1

gAreaRoomMap_RoyalCrypt_7:: @ 0810629C
	map_bottom offset_gAreaRoomMap_RoyalCrypt_MushroomPit_bottom, 0x2EC, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_MushroomPit_top, 0x2EC, 1, 1

gAreaRoomMap_RoyalCrypt_8:: @ 081062B4
	map_bottom offset_gAreaRoomMap_RoyalCrypt_Entrance_bottom, 0x154, 1
	map_top offset_gAreaRoomMap_RoyalCrypt_Entrance_top, 0x154, 1, 1

gAreaRoomMaps_RoyalCrypt:: @ 081062CC
	.4byte gAreaRoomMap_RoyalCrypt_0
	.4byte gAreaRoomMap_RoyalCrypt_1
	.4byte gAreaRoomMap_RoyalCrypt_2
	.4byte gAreaRoomMap_RoyalCrypt_3
	.4byte gAreaRoomMap_RoyalCrypt_4
	.4byte gAreaRoomMap_RoyalCrypt_5
	.4byte gAreaRoomMap_RoyalCrypt_6
	.4byte gAreaRoomMap_RoyalCrypt_7
	.4byte gAreaRoomMap_RoyalCrypt_8
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0

gAreaRoomMap_PalaceOfWinds_GyorgTornado:: @ 0810630C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_GyorgTornado_bottom, 0xA8C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_GyorgTornado_top, 0xA8C, 1, 1

gAreaRoomMap_PalaceOfWinds_BossKey:: @ 08106324
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BossKey_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BossKey_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_BeforeBallAndChainSoldiers:: @ 0810633C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BeforeBallAndChainSoldiers_bottom, 0x1A4, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BeforeBallAndChainSoldiers_top, 0x1A4, 1, 1

gAreaRoomMap_PalaceOfWinds_GyorgBossDoor:: @ 08106354
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_GyorgBossDoor_bottom, 0x384, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_GyorgBossDoor_top, 0x384, 1, 1

gAreaRoomMap_PalaceOfWinds_EastChestFromGyorgBossDoor:: @ 0810636C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_EastChestFromGyorgBossDoor_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_EastChestFromGyorgBossDoor_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_MoblinAndWizzrobeFight:: @ 08106384
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_MoblinAndWizzrobeFight_bottom, 0x384, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_MoblinAndWizzrobeFight_top, 0x384, 1, 1

gAreaRoomMap_PalaceOfWinds_FourButtonStalfos:: @ 0810639C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_FourButtonStalfos_bottom, 0x384, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_FourButtonStalfos_top, 0x384, 1, 1

gAreaRoomMap_PalaceOfWinds_FanAndKeyToBossKey:: @ 081063B4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_FanAndKeyToBossKey_bottom, 0x384, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_FanAndKeyToBossKey_top, 0x384, 1, 1

gAreaRoomMap_PalaceOfWinds_BallAndChainSoldiers:: @ 081063CC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BallAndChainSoldiers_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BallAndChainSoldiers_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_BombarossaPath:: @ 081063E4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BombarossaPath_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BombarossaPath_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_HoleToDarknut:: @ 081063FC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_HoleToDarknut_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_HoleToDarknut_top, 0x186, 1, 1

gAreaRoomMap_PalaceOfWinds_ToBombarossaPath:: @ 08106414
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_ToBombarossaPath_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_ToBombarossaPath_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_DarknutMiniboss:: @ 0810642C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_DarknutMiniboss_bottom, 0x1E0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_DarknutMiniboss_top, 0x1E0, 1, 1

gAreaRoomMap_PalaceOfWinds_BombWallInside:: @ 08106444
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BombWallInside_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BombWallInside_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_BombWallOutside:: @ 0810645C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BombWallOutside_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BombWallOutside_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_CloudJumps:: @ 08106474
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_CloudJumps_bottom, 0x708, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_CloudJumps_top, 0x708, 1, 1

gAreaRoomMap_PalaceOfWinds_BlockMazeToBossDoor:: @ 0810648C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BlockMazeToBossDoor_bottom, 0xA8C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BlockMazeToBossDoor_top, 0xA8C, 1, 1

gAreaRoomMap_PalaceOfWinds_CrackedFloorLakitu:: @ 081064A4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_CrackedFloorLakitu_bottom, 0x384, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_CrackedFloorLakitu_top, 0x384, 1, 1

gAreaRoomMap_PalaceOfWinds_HeartPieceBridge:: @ 081064BC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_HeartPieceBridge_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_HeartPieceBridge_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_FanBridge:: @ 081064D4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_FanBridge_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_FanBridge_top, 0x4B0, 1, 1

gAreaRoomMap_PalaceOfWinds_ToFanBridge:: @ 081064EC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_ToFanBridge_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_ToFanBridge_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_RedWarpHall:: @ 08106504
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_RedWarpHall_bottom, 0x708, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_RedWarpHall_top, 0x708, 1, 1

gAreaRoomMap_PalaceOfWinds_PlatformCloneRide:: @ 0810651C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_PlatformCloneRide_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_PlatformCloneRide_top, 0x4B0, 1, 1

gAreaRoomMap_PalaceOfWinds_PitCornerAfterKey:: @ 08106534
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_PitCornerAfterKey_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_PitCornerAfterKey_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_CrowRide:: @ 0810654C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_PlatformCrowRide_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_PlatformCrowRide_top, 0x4B0, 1, 1

gAreaRoomMap_PalaceOfWinds_GratePlatformRide:: @ 08106564
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_GratePlatformRide_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_GratePlatformRide_top, 0x4B0, 1, 1

gAreaRoomMap_PalaceOfWinds_PotPush:: @ 0810657C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_PotPush_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_PotPush_top, 0x4B0, 1, 1

gAreaRoomMap_PalaceOfWinds_FloormasterLever:: @ 08106594
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_FloormasterLever_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_FloormasterLever_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_Map:: @ 081065AC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_Map_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_Map_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_CornerToMap:: @ 081065C4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_CornerToMap_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_CornerToMap_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_StairsAfterFloormaster:: @ 081065DC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_StairsAfterFloormaster_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_StairsAfterFloormaster_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_HoleToKinstoneWizzrobe:: @ 081065F4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_HoleToKinstoneWizzrobe_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_HoleToKinstoneWizzrobe_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_KeyArrowButton:: @ 0810660C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_KeyArrowButton_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_KeyArrowButton_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_GratesTo3F:: @ 08106624
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_GratesTo3f_bottom, 0xA8C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_GratesTo3f_top, 0xA8C, 1, 1

gAreaRoomMap_PalaceOfWinds_SpinyFight:: @ 0810663C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_SpinyFight_bottom, 0x708, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_SpinyFight_top, 0x708, 1, 1

gAreaRoomMap_PalaceOfWinds_PeahatSwitch:: @ 08106654
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_PeahatSwitch_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_PeahatSwitch_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_WhirlwindBombarossa:: @ 0810666C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_WhirlwindBombarossa_bottom, 0x4B0, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_WhirlwindBombarossa_top, 0x4B0, 1, 1

gAreaRoomMap_PalaceOfWinds_DoorToStalfosFirebar:: @ 08106684
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_DoorToStalfosFirebar_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_DoorToStalfosFirebar_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_StalfosFireborHole:: @ 0810669C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_StalfosFirebarHole_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_StalfosFirebarHole_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_ShortcutDoorButtons:: @ 081066B4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_ShortcutDoorButtons_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_ShortcutDoorButtons_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_ToPeahatSwitch:: @ 081066CC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_ToPeahatSwitch_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_ToPeahatSwitch_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_KinstoneWizzrobeFight:: @ 081066E4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_KinstoneWizzrobeFight_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_KinstoneWizzrobeFight_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_GibdoStairs:: @ 081066FC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_GibdoStairs_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_GibdoStairs_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_SpikeBarSmallKey:: @ 08106714
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_SpikeBarSmallKey_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_SpikeBarSmallKey_top, 0x258, 1, 1

gAreaRoomMap_PalaceOfWinds_RocCape:: @ 0810672C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_RocCape_bottom, 0x708, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_RocCape_top, 0x708, 1, 1

gAreaRoomMap_PalaceOfWinds_FireBarGrates:: @ 08106744
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_FireBarGrates_bottom, 0x708, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_FireBarGrates_top, 0x708, 1, 1

gAreaRoomMap_PalaceOfWinds_PlatformRideBombarossas:: @ 0810675C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_PlatformRideBombarossas_bottom, 0x550, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_PlatformRideBombarossas_top, 0x550, 1, 1

gAreaRoomMap_PalaceOfWinds_BridgeAfterDarknut:: @ 08106774
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BridgeAfterDarknut_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BridgeAfterDarknut_top, 0x12C, 1, 1

gAreaRoomMap_PalaceOfWinds_BridgeSwitchesCloneBlock:: @ 0810678C
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_BridgeSwitchesCloneBlock_bottom, 0x500, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_BridgeSwitchesCloneBlock_top, 0x500, 1, 1

gAreaRoomMap_PalaceOfWinds_EntranceRoom:: @ 081067A4
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_EntranceRoom_bottom, 0x3DE, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_EntranceRoom_top, 0x3DE, 1, 1

gAreaRoomMap_PalaceOfWinds_DarkCompassHall:: @ 081067BC
	map_bottom offset_gAreaRoomMap_PalaceOfWinds_DarkCompassHall_bottom, 0x708, 1
	map_top offset_gAreaRoomMap_PalaceOfWinds_DarkCompassHall_top, 0x708, 1, 1

gAreaRoomMaps_PalaceOfWinds:: @ 081067D4
	.4byte gAreaRoomMap_PalaceOfWinds_GyorgTornado
	.4byte gAreaRoomMap_PalaceOfWinds_BossKey
	.4byte gAreaRoomMap_PalaceOfWinds_BeforeBallAndChainSoldiers
	.4byte gAreaRoomMap_PalaceOfWinds_GyorgBossDoor
	.4byte gAreaRoomMap_PalaceOfWinds_EastChestFromGyorgBossDoor
	.4byte gAreaRoomMap_PalaceOfWinds_MoblinAndWizzrobeFight
	.4byte gAreaRoomMap_PalaceOfWinds_FourButtonStalfos
	.4byte gAreaRoomMap_PalaceOfWinds_FanAndKeyToBossKey
	.4byte gAreaRoomMap_PalaceOfWinds_BallAndChainSoldiers
	.4byte gAreaRoomMap_PalaceOfWinds_BombarossaPath
	.4byte gAreaRoomMap_PalaceOfWinds_HoleToDarknut
	.4byte gAreaRoomMap_PalaceOfWinds_ToBombarossaPath
	.4byte gAreaRoomMap_PalaceOfWinds_DarknutMiniboss
	.4byte gAreaRoomMap_PalaceOfWinds_BombWallInside
	.4byte gAreaRoomMap_PalaceOfWinds_BombWallOutside
	.4byte gAreaRoomMap_PalaceOfWinds_CloudJumps
	.4byte gAreaRoomMap_PalaceOfWinds_BlockMazeToBossDoor
	.4byte gAreaRoomMap_PalaceOfWinds_CrackedFloorLakitu
	.4byte gAreaRoomMap_PalaceOfWinds_HeartPieceBridge
	.4byte gAreaRoomMap_PalaceOfWinds_FanBridge
	.4byte gAreaRoomMap_PalaceOfWinds_ToFanBridge
	.4byte gAreaRoomMap_PalaceOfWinds_RedWarpHall
	.4byte gAreaRoomMap_PalaceOfWinds_PlatformCloneRide
	.4byte gAreaRoomMap_PalaceOfWinds_PitCornerAfterKey
	.4byte gAreaRoomMap_PalaceOfWinds_CrowRide
	.4byte gAreaRoomMap_PalaceOfWinds_GratePlatformRide
	.4byte gAreaRoomMap_PalaceOfWinds_PotPush
	.4byte gAreaRoomMap_PalaceOfWinds_FloormasterLever
	.4byte gAreaRoomMap_PalaceOfWinds_Map
	.4byte gAreaRoomMap_PalaceOfWinds_CornerToMap
	.4byte gAreaRoomMap_PalaceOfWinds_StairsAfterFloormaster
	.4byte gAreaRoomMap_PalaceOfWinds_HoleToKinstoneWizzrobe
	.4byte gAreaRoomMap_PalaceOfWinds_KeyArrowButton
	.4byte gAreaRoomMap_PalaceOfWinds_GratesTo3F
	.4byte gAreaRoomMap_PalaceOfWinds_SpinyFight
	.4byte gAreaRoomMap_PalaceOfWinds_PeahatSwitch
	.4byte gAreaRoomMap_PalaceOfWinds_WhirlwindBombarossa
	.4byte gAreaRoomMap_PalaceOfWinds_DoorToStalfosFirebar
	.4byte gAreaRoomMap_PalaceOfWinds_StalfosFireborHole
	.4byte gAreaRoomMap_PalaceOfWinds_ShortcutDoorButtons
	.4byte gAreaRoomMap_PalaceOfWinds_ToPeahatSwitch
	.4byte gAreaRoomMap_PalaceOfWinds_KinstoneWizzrobeFight
	.4byte gAreaRoomMap_PalaceOfWinds_GibdoStairs
	.4byte gAreaRoomMap_PalaceOfWinds_SpikeBarSmallKey
	.4byte gAreaRoomMap_PalaceOfWinds_RocCape
	.4byte gAreaRoomMap_PalaceOfWinds_FireBarGrates
	.4byte gAreaRoomMap_PalaceOfWinds_PlatformRideBombarossas
	.4byte gAreaRoomMap_PalaceOfWinds_BridgeAfterDarknut
	.4byte gAreaRoomMap_PalaceOfWinds_BridgeSwitchesCloneBlock
	.4byte gAreaRoomMap_PalaceOfWinds_EntranceRoom
	.4byte gAreaRoomMap_PalaceOfWinds_DarkCompassHall

gAreaRoomMap_PalaceOfWindsBoss_0:: @ 081068A0
	map_top offset_gAreaRoomMap_PalaceOfWindsBoss_0_top, 0x1F80, 1, 1
gAreaRoomMaps_PalaceOfWindsBoss:: @ 081068AC
	.4byte gAreaRoomMap_PalaceOfWindsBoss_0

gAreaRoomMap_Sanctuary_0:: @ 081068B0
	map_bottom offset_gAreaRoomMap_Sanctuary_Hall_bottom, 0x6D6, 1
	map_top offset_gAreaRoomMap_Sanctuary_Hall_top, 0x6D6, 1, 1

gAreaRoomMap_Sanctuary_1:: @ 081068C8
	map_bottom offset_gAreaRoomMap_Sanctuary_Main_bottom, 0x910, 1
	map_top offset_gAreaRoomMap_Sanctuary_Main_top, 0x910, 1, 1

gAreaRoomMap_Sanctuary_2:: @ 081068E0
	map_bottom offset_gAreaRoomMap_Sanctuary_StainedGlass_bottom, 0x344, 1
	map_top offset_gAreaRoomMap_Sanctuary_StainedGlass_top, 0x344, 1, 1

gAreaRoomMaps_Sanctuary:: @ 081068F8
	.4byte gAreaRoomMap_Sanctuary_0
	.4byte gAreaRoomMap_Sanctuary_1
	.4byte gAreaRoomMap_Sanctuary_2
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0

gAreaRoomMap_HyruleCastle_0:: @ 08106918
	map_bottom offset_gAreaRoomMap_HyruleCastle_0_bottom, 0x7CE, 1
	map_top offset_gAreaRoomMap_HyruleCastle_0_top, 0x7CE, 1, 1

gAreaRoomMap_HyruleCastle_1:: @ 08106930
	map_bottom offset_gAreaRoomMap_HyruleCastle_1_bottom, 0x7FE, 1
	map_top offset_gAreaRoomMap_HyruleCastle_1_top, 0x7FE, 1, 1

gAreaRoomMap_HyruleCastle_2:: @ 08106948
	map_bottom offset_gAreaRoomMap_HyruleCastle_2_bottom, 0x2EC, 1
	map_top offset_gAreaRoomMap_HyruleCastle_2_top, 0x2EC, 1, 1

gAreaRoomMap_HyruleCastle_3:: @ 08106960
	map_bottom offset_gAreaRoomMap_HyruleCastle_3_bottom, 0xC94, 1
	map_top offset_gAreaRoomMap_HyruleCastle_3_top, 0xC94, 1, 1

gAreaRoomMap_HyruleCastle_4:: @ 08106978
	map_bottom offset_gAreaRoomMap_HyruleCastle_4_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_HyruleCastle_4_top, 0x1FE, 1, 1

gAreaRoomMap_HyruleCastle_5:: @ 08106990
	map_bottom offset_gAreaRoomMap_HyruleCastle_5_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HyruleCastle_5_top, 0x12C, 1, 1

gAreaRoomMap_HyruleCastle_6:: @ 081069A8
	map_bottom offset_gAreaRoomMap_HyruleCastle_6_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_HyruleCastle_6_top, 0x12C, 1, 1

gAreaRoomMaps_HyruleCastle:: @ 081069C0
	.4byte gAreaRoomMap_HyruleCastle_0
	.4byte gAreaRoomMap_HyruleCastle_1
	.4byte gAreaRoomMap_HyruleCastle_2
	.4byte gAreaRoomMap_HyruleCastle_3
	.4byte gAreaRoomMap_HyruleCastle_4
	.4byte gAreaRoomMap_HyruleCastle_5
	.4byte gAreaRoomMap_HyruleCastle_6
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0
	.4byte 0x0

gAreaRoomMap_SanctuaryEntrance_0:: @ 08106A00
	map_bottom offset_gAreaRoomMap_SanctuaryEntrance_Main_bottom, 0x396, 1
	map_top offset_gAreaRoomMap_SanctuaryEntrance_Main_top, 0x396, 1, 1

gAreaRoomMaps_SanctuaryEntrance:: @ 08106A18
	.4byte gAreaRoomMap_SanctuaryEntrance_0

gAreaRoomMap_DarkHyruleCastle_1FEntrance:: @ 08106A1C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fEntrance_bottom, 0xE58, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fEntrance_top, 0xE58, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FTopLeftTower:: @ 08106A34
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3fTopLeftTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3fTopLeftTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FTopRightTower:: @ 08106A4C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3fTopRightTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3fTopRightTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FBottomLeftTower:: @ 08106A64
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3fBottomLeftTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3fBottomLeftTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FBottomRightTower:: @ 08106A7C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3fBottomRightTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3fBottomRightTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FKeatonHallToVaati:: @ 08106A94
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3fKeatonHallToVaati_bottom, 0x444, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3fKeatonHallToVaati_top, 0x444, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FTripleDarknut:: @ 08106AAC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3fTripleDarknut_bottom, 0x2A0, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3fTripleDarknut_top, 0x2A0, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopLeftTower:: @ 08106AC4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopLeftTower_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopLeftTower_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopLeftCorner:: @ 08106ADC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopLeftCorner_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopLeftCorner_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBossKey:: @ 08106AF4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBossKey_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBossKey_top, 0x1FE, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBlueWarp:: @ 08106B0C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBlueWarp_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBlueWarp_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopRightCornerGhini:: @ 08106B24
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightCornerGhini_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightCornerGhini_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopRightCornerTorches:: @ 08106B3C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightCornerTorches_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightCornerTorches_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopRightTower:: @ 08106B54
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopLeftDarknut:: @ 08106B6C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopLeftDarknut_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopLeftDarknut_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FSparks:: @ 08106B84
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fSparks_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fSparks_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FTopRightDarknuts:: @ 08106B9C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightDarknuts_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fTopRightDarknuts_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FLeft:: @ 08106BB4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fLeft_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fLeft_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FRight:: @ 08106BCC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fRight_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fRight_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomLeftDarknuts:: @ 08106BE4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftDarknuts_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftDarknuts_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBossDoor:: @ 08106BFC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBossDoor_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBossDoor_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomRightDarknut:: @ 08106C14
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomRightDarknut_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomRightDarknut_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomLeftCornerPuzzle:: @ 08106C2C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftCornerPuzzle_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftCornerPuzzle_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FEntrance:: @ 08106C44
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fEntrance_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fEntrance_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomLeftCorner:: @ 08106C5C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomRightCorner_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomRightCorner_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomLeftTower:: @ 08106C74
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomLeftGhini:: @ 08106C8C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftGhini_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomLeftGhini_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FTopRightTower7:: @ 08106CA4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1b_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1b_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1Entrance:: @ 08106CBC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1Entrance_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1Entrance_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_2FBottomRightTower:: @ 08106CD4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_2fBottomRightTower_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_2fBottomRightTower_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FTopLeftTower:: @ 08106CEC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fTopLeftTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fTopLeftTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FThroneRoom:: @ 08106D04
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fThroneRoom_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fThroneRoom_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FCompass:: @ 08106D1C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fCompass_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fCompass_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FTopRightTower:: @ 08106D34
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fTopRightTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fTopRightTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FBeforeThrone:: @ 08106D4C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fBeforeThrone_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fBeforeThrone_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopTopLeft:: @ 08106D64
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopTopLeft_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopTopLeft_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopTop:: @ 08106D7C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopTop_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopTop_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopTopRight:: @ 08106D94
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopTopRight_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopTopRight_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopLeft:: @ 08106DAC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopLeft_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopLeft_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopRight:: @ 08106DC4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopRight_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopRight_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopBottomLeft:: @ 08106DDC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopBottomLeft_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopBottomLeft_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopBottom:: @ 08106DF4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopBottom_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopBottom_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FLoopBottomRight:: @ 08106E0C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fLoopBottomRight_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fLoopBottomRight_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FBottomLeftTower:: @ 08106E24
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fBottomLeftTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fBottomLeftTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_1FBottomRightTower:: @ 08106E3C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_1fBottomRightTower_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_1fBottomRightTower_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1BelowThrone:: @ 08106E54
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1BelowThrone_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1BelowThrone_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1BelowCompass:: @ 08106E6C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1BelowCompass_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1BelowCompass_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1BeforeThrone:: @ 08106E84
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1BeforeThrone_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1BeforeThrone_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1ToPrison:: @ 08106E9C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1ToPrison_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1ToPrison_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1BombWall:: @ 08106EB4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1BombWall_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1BombWall_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1Keatons:: @ 08106ECC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1Keatons_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1Keatons_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1ToPrisonFirebar:: @ 08106EE4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1ToPrisonFirebar_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1ToPrisonFirebar_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1Cannons:: @ 08106EFC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1Cannons_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1Cannons_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1Left:: @ 08106F14
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1Left_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1Left_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1Right:: @ 08106F2C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1Right_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1Right_top, 0x1BA, 1, 1

gAreaRoomMap_DarkHyruleCastle_B1Map:: @ 08106F44
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B1Map_bottom, 0xA5C, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B1Map_top, 0xA5C, 1, 1

gAreaRoomMap_DarkHyruleCastle_B2ToPrison:: @ 08106F5C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B2ToPrison_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B2ToPrison_top, 0x1FE, 1, 1

gAreaRoomMap_DarkHyruleCastle_B2Prison:: @ 08106F74
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B2Prison_bottom, 0x3FC, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B2Prison_top, 0x3FC, 1, 1

gAreaRoomMap_DarkHyruleCastle_B2Dropdown:: @ 08106F8C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_B2Dropdown_bottom, 0x264, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_B2Dropdown_top, 0x264, 1, 1

gAreaRoomMap_DarkHyruleCastle_3FKeatonHallToVaati9:: @ 08106FA4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastle_3b_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastle_3b_top, 0x1BA, 1, 1

gAreaRoomMaps_DarkHyruleCastle:: @ 08106FBC
	.4byte gAreaRoomMap_DarkHyruleCastle_1FEntrance
	.4byte gAreaRoomMap_DarkHyruleCastle_3FTopLeftTower
	.4byte gAreaRoomMap_DarkHyruleCastle_3FTopRightTower
	.4byte gAreaRoomMap_DarkHyruleCastle_3FBottomLeftTower
	.4byte gAreaRoomMap_DarkHyruleCastle_3FBottomRightTower
	.4byte gAreaRoomMap_DarkHyruleCastle_3FKeatonHallToVaati
	.4byte gAreaRoomMap_DarkHyruleCastle_3FTripleDarknut
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopLeftTower
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopLeftCorner
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBossKey
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBlueWarp
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopRightCornerGhini
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopRightCornerTorches
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopRightTower
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopLeftDarknut
	.4byte gAreaRoomMap_DarkHyruleCastle_2FSparks
	.4byte gAreaRoomMap_DarkHyruleCastle_2FTopRightDarknuts
	.4byte gAreaRoomMap_DarkHyruleCastle_2FLeft
	.4byte gAreaRoomMap_DarkHyruleCastle_2FRight
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomLeftDarknuts
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBossDoor
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomRightDarknut
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomLeftCornerPuzzle
	.4byte gAreaRoomMap_DarkHyruleCastle_2FEntrance
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomLeftCorner
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomLeftTower
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomLeftGhini
	.4byte gAreaRoomMap_DarkHyruleCastle_3FTopRightTower7
	.4byte gAreaRoomMap_DarkHyruleCastle_B1Entrance
	.4byte gAreaRoomMap_DarkHyruleCastle_2FBottomRightTower
	.4byte gAreaRoomMap_DarkHyruleCastle_1FTopLeftTower
	.4byte gAreaRoomMap_DarkHyruleCastle_1FThroneRoom
	.4byte gAreaRoomMap_DarkHyruleCastle_1FCompass
	.4byte gAreaRoomMap_DarkHyruleCastle_1FTopRightTower
	.4byte gAreaRoomMap_DarkHyruleCastle_1FBeforeThrone
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopTopLeft
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopTop
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopTopRight
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopLeft
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopRight
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopBottomLeft
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopBottom
	.4byte gAreaRoomMap_DarkHyruleCastle_1FLoopBottomRight
	.4byte gAreaRoomMap_DarkHyruleCastle_1FBottomLeftTower
	.4byte gAreaRoomMap_DarkHyruleCastle_1FBottomRightTower
	.4byte gAreaRoomMap_DarkHyruleCastle_B1BelowThrone
	.4byte gAreaRoomMap_DarkHyruleCastle_B1BelowCompass
	.4byte gAreaRoomMap_DarkHyruleCastle_B1BeforeThrone
	.4byte gAreaRoomMap_DarkHyruleCastle_B1ToPrison
	.4byte gAreaRoomMap_DarkHyruleCastle_B1BombWall
	.4byte gAreaRoomMap_DarkHyruleCastle_B1Keatons
	.4byte gAreaRoomMap_DarkHyruleCastle_B1ToPrisonFirebar
	.4byte gAreaRoomMap_DarkHyruleCastle_B1Cannons
	.4byte gAreaRoomMap_DarkHyruleCastle_B1Left
	.4byte gAreaRoomMap_DarkHyruleCastle_B1Right
	.4byte gAreaRoomMap_DarkHyruleCastle_B1Map
	.4byte gAreaRoomMap_DarkHyruleCastle_B2ToPrison
	.4byte gAreaRoomMap_DarkHyruleCastle_B2Prison
	.4byte gAreaRoomMap_DarkHyruleCastle_B2Dropdown
	.4byte gAreaRoomMap_DarkHyruleCastle_3FKeatonHallToVaati9

gAreaRoomMap_DarkHyruleCastleOutside_0:: @ 081070AC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_ZeldaStatuePlatform_bottom, 0x2EE, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_ZeldaStatuePlatform_top, 0x2EE, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_1:: @ 081070C4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_Garden_bottom, 0x396, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_Garden_top, 0x396, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_2:: @ 081070DC
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_Northwest_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_Northwest_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_3:: @ 081070F4
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_Northeast_bottom, 0x52E, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_Northeast_top, 0x52E, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_4:: @ 0810710C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_East_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_East_top, 0x2A8, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_5:: @ 08107124
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_Southwest_bottom, 0x374, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_Southwest_top, 0x374, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_6:: @ 0810713C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_South_bottom, 0xA5C, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_South_top, 0xA5C, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_7:: @ 08107154
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_Southeast_bottom, 0x6E8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_Southeast_top, 0x6E8, 1, 1

gAreaRoomMap_DarkHyruleCastleOutside_8:: @ 0810716C
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleOutside_8_bottom, 0x630, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleOutside_8_top, 0x630, 1, 1

gAreaRoomMaps_DarkHyruleCastleOutside:: @ 08107184
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_0
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_1
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_2
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_3
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_4
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_5
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_6
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_7
	.4byte gAreaRoomMap_DarkHyruleCastleOutside_8

gAreaRoomMap_DarkHyruleCastleBridge_0:: @ 081071A8
	map_bottom offset_gAreaRoomMap_DarkHyruleCastleBridge_Main_bottom, 0x2A8, 1
	map_top offset_gAreaRoomMap_DarkHyruleCastleBridge_Main_top, 0x2A8, 1, 1

gAreaRoomMaps_DarkHyruleCastleBridge:: @ 081071C0
	.4byte gAreaRoomMap_DarkHyruleCastleBridge_0

gAreaRoomMap_VaatisArms_0:: @ 081071C4
	map_bottom offset_gAreaRoomMap_VaatisArms_First_bottom, 0x214, 1
	map_top offset_gAreaRoomMap_VaatisArms_First_top, 0x214, 1, 1

gAreaRoomMap_VaatisArms_1:: @ 081071DC
	map_bottom offset_gAreaRoomMap_VaatisArms_Second_bottom, 0x214, 1
	map_top offset_gAreaRoomMap_VaatisArms_Second_top, 0x214, 1, 1

gAreaRoomMap_VaatisArms_2:: @ 081071F4
	map_bottom offset_gAreaRoomMap_VaatisArms_3_bottom, 0x214, 1
	map_top offset_gAreaRoomMap_VaatisArms_3_top, 0x214, 1, 1

gAreaRoomMaps_VaatisArms:: @ 0810720C
	.4byte gAreaRoomMap_VaatisArms_0
	.4byte gAreaRoomMap_VaatisArms_1
	.4byte gAreaRoomMap_VaatisArms_2

gAreaRoomMap_Vaati3_0:: @ 08107218
	map_bottom offset_gAreaRoomMap_Vaati3_0_bottom, 0x294, 1
	map_top offset_gAreaRoomMap_Vaati3_0_top, 0x294, 1, 1

gAreaRoomMap_Vaati3_1:: @ 08107230
	map_bottom offset_gAreaRoomMap_Vaati3_1_bottom, 0x210, 1
	map_top offset_gAreaRoomMap_Vaati3_1_top, 0x210, 1, 1

gAreaRoomMaps_Vaati3:: @ 08107248
	.4byte gAreaRoomMap_Vaati3_0
	.4byte gAreaRoomMap_Vaati3_1

gAreaRoomMap_Vaati2_0:: @ 08107250
	map_bottom offset_gAreaRoomMap_Vaati2_0_bottom, 0x294, 1
	map_top offset_gAreaRoomMap_Vaati2_0_top, 0x294, 1, 1

gAreaRoomMaps_Vaati2:: @ 08107268
	.4byte gAreaRoomMap_Vaati2_0

gAreaRoomMap_47_0:: @ 0810726C
	map_bottom offset_gAreaRoomMap_47_0_bottom, 0x256, 1
	map_top offset_gAreaRoomMap_47_0_top, 0x256, 1, 1

gAreaRoomMap_47_1:: @ 08107284
	map_bottom offset_gAreaRoomMap_47_1_bottom, 0x2B2, 1
	map_top offset_gAreaRoomMap_47_1_top, 0x2B2, 1, 1

gAreaRoomMap_47_2:: @ 0810729C
	map_bottom offset_gAreaRoomMap_47_2_bottom, 0x47E, 1
	map_top offset_gAreaRoomMap_47_2_top, 0x47E, 1, 1

gAreaRoomMaps_47:: @ 081072B4
	.4byte gAreaRoomMap_47_0
	.4byte gAreaRoomMap_47_1
	.4byte gAreaRoomMap_47_2

gAreaRoomMap_CastorCaves_0:: @ 081072C0
	map_bottom offset_gAreaRoomMap_CastorCaves_South_bottom, 0x168, 1
	map_top offset_gAreaRoomMap_CastorCaves_South_top, 0x168, 1, 1

gAreaRoomMap_CastorCaves_1:: @ 081072D8
	map_bottom offset_gAreaRoomMap_CastorCaves_North_bottom, 0x1B8, 1
	map_top offset_gAreaRoomMap_CastorCaves_North_top, 0x1B8, 1, 1

gAreaRoomMap_CastorCaves_2:: @ 081072F0
	map_bottom offset_gAreaRoomMap_CastorCaves_WindRuins_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CastorCaves_WindRuins_top, 0x12C, 1, 1

gAreaRoomMap_CastorCaves_3:: @ 08107308
	map_bottom offset_gAreaRoomMap_CastorCaves_Darknut_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CastorCaves_Darknut_top, 0x12C, 1, 1

gAreaRoomMap_CastorCaves_4:: @ 08107320
	map_bottom offset_gAreaRoomMap_CastorCaves_HeartPiece_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_CastorCaves_HeartPiece_top, 0x12C, 1, 1

gAreaRoomMaps_CastorCaves:: @ 08107338
	.4byte gAreaRoomMap_CastorCaves_0
	.4byte gAreaRoomMap_CastorCaves_1
	.4byte gAreaRoomMap_CastorCaves_2
	.4byte gAreaRoomMap_CastorCaves_3
	.4byte gAreaRoomMap_CastorCaves_4

gAreaRoomMap_CastorDarknut_0:: @ 0810734C
	map_bottom offset_gAreaRoomMap_CastorDarknut_Main_bottom, 0x1BA, 1
	map_top offset_gAreaRoomMap_CastorDarknut_Main_top, 0x1BA, 1, 1

gAreaRoomMap_CastorDarknut_1:: @ 08107364
	map_bottom offset_gAreaRoomMap_CastorDarknut_Hall_bottom, 0x280, 1
	map_top offset_gAreaRoomMap_CastorDarknut_Hall_top, 0x280, 1, 1

gAreaRoomMaps_CastorDarknut:: @ 0810737C
	.4byte gAreaRoomMap_CastorDarknut_0
	.4byte gAreaRoomMap_CastorDarknut_1

gAreaRoomMap_Caves_0:: @ 08107384
	map_bottom offset_gAreaRoomMap_Caves_Boomerang_bottom, 0x372, 1
	map_top offset_gAreaRoomMap_Caves_Boomerang_top, 0x372, 1, 1

gAreaRoomMap_Caves_1:: @ 0810739C
	map_bottom offset_gAreaRoomMap_Caves_ToGraveyard_bottom, 0x2B2, 1
	map_top offset_gAreaRoomMap_Caves_ToGraveyard_top, 0x2B2, 1, 1

gAreaRoomMap_Caves_2:: @ 081073B4
	map_bottom offset_gAreaRoomMap_Caves_2_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_2_top, 0x12C, 1, 1

gAreaRoomMap_Caves_3:: @ 081073CC
	map_bottom offset_gAreaRoomMap_Caves_3_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_3_top, 0x12C, 1, 1

gAreaRoomMap_Caves_4:: @ 081073E4
	map_bottom offset_gAreaRoomMap_Caves_4_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_4_top, 0x12C, 1, 1

gAreaRoomMap_Caves_5:: @ 081073FC
	map_bottom offset_gAreaRoomMap_Caves_5_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_5_top, 0x12C, 1, 1

gAreaRoomMap_Caves_6:: @ 08107414
	map_bottom offset_gAreaRoomMap_Caves_6_bottom, 0x1A4, 1
	map_top offset_gAreaRoomMap_Caves_6_top, 0x1A4, 1, 1

gAreaRoomMap_Caves_7:: @ 0810742C
	map_bottom offset_gAreaRoomMap_Caves_TrilbyKeeseChest_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_TrilbyKeeseChest_top, 0x12C, 1, 1

gAreaRoomMap_Caves_8:: @ 08107444
	map_bottom offset_gAreaRoomMap_Caves_TrilbyFairyFountain_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_TrilbyFairyFountain_top, 0x12C, 1, 1

gAreaRoomMap_Caves_9:: @ 0810745C
	map_bottom offset_gAreaRoomMap_Caves_SouthHyruleFieldFairyFountain_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_SouthHyruleFieldFairyFountain_top, 0x12C, 1, 1

gAreaRoomMap_Caves_10:: @ 08107474
	map_bottom offset_gAreaRoomMap_Caves_A_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_A_top, 0x12C, 1, 1

gAreaRoomMap_Caves_11:: @ 0810748C
	map_bottom offset_gAreaRoomMap_Caves_HyruleTownWaterfall_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_HyruleTownWaterfall_top, 0x12C, 1, 1

gAreaRoomMap_Caves_12:: @ 081074A4
	map_bottom offset_gAreaRoomMap_Caves_LonLonRanch_bottom, 0x1E0, 1
	map_top offset_gAreaRoomMap_Caves_LonLonRanch_top, 0x1E0, 1, 1

gAreaRoomMap_Caves_13:: @ 081074BC
	map_bottom offset_gAreaRoomMap_Caves_LonLonRanchSecret_bottom, 0x1E0, 1
	map_top offset_gAreaRoomMap_Caves_LonLonRanchSecret_top, 0x1E0, 1, 1

gAreaRoomMap_Caves_14:: @ 081074D4
	map_bottom offset_gAreaRoomMap_Caves_TrilbyHighlands_bottom, 0x208, 1
	map_top offset_gAreaRoomMap_Caves_TrilbyHighlands_top, 0x208, 1, 1

gAreaRoomMap_Caves_15:: @ 081074EC
	map_bottom offset_gAreaRoomMap_Caves_LonLonRanchWallet_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_LonLonRanchWallet_top, 0x12C, 1, 1

gAreaRoomMap_Caves_16:: @ 08107504
	map_bottom offset_gAreaRoomMap_Caves_SouthHyruleFieldRupee_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_SouthHyruleFieldRupee_top, 0x12C, 1, 1

gAreaRoomMap_Caves_17:: @ 0810751C
	map_bottom offset_gAreaRoomMap_Caves_TrilbyRupee_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_TrilbyRupee_top, 0x12C, 1, 1

gAreaRoomMap_Caves_18:: @ 08107534
	map_bottom offset_gAreaRoomMap_Caves_TrilbyMittsFairyFountain_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_TrilbyMittsFairyFountain_top, 0x12C, 1, 1

gAreaRoomMap_Caves_19:: @ 0810754C
	map_bottom offset_gAreaRoomMap_Caves_HillsKeeseChest_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_HillsKeeseChest_top, 0x12C, 1, 1

gAreaRoomMap_Caves_20:: @ 08107564
	map_bottom offset_gAreaRoomMap_Caves_BottleBusinessScrub_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_BottleBusinessScrub_top, 0x12C, 1, 1

gAreaRoomMap_Caves_21:: @ 0810757C
	map_bottom offset_gAreaRoomMap_Caves_HeartPieceHallway_bottom, 0x1C2, 1
	map_top offset_gAreaRoomMap_Caves_HeartPieceHallway_top, 0x1C2, 1, 1

gAreaRoomMap_Caves_22:: @ 08107594
	map_bottom offset_gAreaRoomMap_Caves_NorthHyruleFieldFairyFountain_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_NorthHyruleFieldFairyFountain_top, 0x12C, 1, 1

gAreaRoomMap_Caves_23:: @ 081075AC
	map_bottom offset_gAreaRoomMap_Caves_KinstoneBusinessScrub_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_Caves_KinstoneBusinessScrub_top, 0x12C, 1, 1

gAreaRoomMaps_Caves:: @ 081075C4
	.4byte gAreaRoomMap_Caves_0
	.4byte gAreaRoomMap_Caves_1
	.4byte gAreaRoomMap_Caves_2
	.4byte gAreaRoomMap_Caves_3
	.4byte gAreaRoomMap_Caves_4
	.4byte gAreaRoomMap_Caves_5
	.4byte gAreaRoomMap_Caves_6
	.4byte gAreaRoomMap_Caves_7
	.4byte gAreaRoomMap_Caves_8
	.4byte gAreaRoomMap_Caves_9
	.4byte gAreaRoomMap_Caves_10
	.4byte gAreaRoomMap_Caves_11
	.4byte gAreaRoomMap_Caves_12
	.4byte gAreaRoomMap_Caves_13
	.4byte gAreaRoomMap_Caves_14
	.4byte gAreaRoomMap_Caves_15
	.4byte gAreaRoomMap_Caves_16
	.4byte gAreaRoomMap_Caves_17
	.4byte gAreaRoomMap_Caves_18
	.4byte gAreaRoomMap_Caves_19
	.4byte gAreaRoomMap_Caves_20
	.4byte gAreaRoomMap_Caves_21
	.4byte gAreaRoomMap_Caves_22
	.4byte gAreaRoomMap_Caves_23

gAreaRoomMap_VeilFallsCaves_0:: @ 08107624
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_Hallway2f_bottom, 0x1A4, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_Hallway2f_top, 0x1A4, 1, 1

gAreaRoomMap_VeilFallsCaves_1:: @ 0810763C
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_Hallway1f_bottom, 0x2D0, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_Hallway1f_top, 0x2D0, 1, 1

gAreaRoomMap_VeilFallsCaves_2:: @ 08107654
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_HallwaySecretRoom_bottom, 0x186, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_HallwaySecretRoom_top, 0x186, 1, 1

gAreaRoomMap_VeilFallsCaves_3:: @ 0810766C
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_Entrance_bottom, 0x1E0, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_Entrance_top, 0x1E0, 1, 1

gAreaRoomMap_VeilFallsCaves_4:: @ 08107684
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_Exit_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_Exit_top, 0x12C, 1, 1

gAreaRoomMap_VeilFallsCaves_5:: @ 0810769C
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_SecretChest_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_SecretChest_top, 0x12C, 1, 1

gAreaRoomMap_VeilFallsCaves_6:: @ 081076B4
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_HallwaySecretStaircase_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_HallwaySecretStaircase_top, 0x12C, 1, 1

gAreaRoomMap_VeilFallsCaves_7:: @ 081076CC
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_HallwayBlockPuzzle_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_HallwayBlockPuzzle_top, 0x258, 1, 1

gAreaRoomMap_VeilFallsCaves_8:: @ 081076E4
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_HallwayRupeePath_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_HallwayRupeePath_top, 0x258, 1, 1

gAreaRoomMap_VeilFallsCaves_9:: @ 081076FC
	map_bottom offset_gAreaRoomMap_VeilFallsCaves_HallwayHeartPiece_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_VeilFallsCaves_HallwayHeartPiece_top, 0x12C, 1, 1

gAreaRoomMaps_VeilFallsCaves:: @ 08107714
	.4byte gAreaRoomMap_VeilFallsCaves_0
	.4byte gAreaRoomMap_VeilFallsCaves_1
	.4byte gAreaRoomMap_VeilFallsCaves_2
	.4byte gAreaRoomMap_VeilFallsCaves_3
	.4byte gAreaRoomMap_VeilFallsCaves_4
	.4byte gAreaRoomMap_VeilFallsCaves_5
	.4byte gAreaRoomMap_VeilFallsCaves_6
	.4byte gAreaRoomMap_VeilFallsCaves_7
	.4byte gAreaRoomMap_VeilFallsCaves_8
	.4byte gAreaRoomMap_VeilFallsCaves_9

gAreaRoomMap_RoyalValleyGraves_0:: @ 0810773C
	map_bottom offset_gAreaRoomMap_RoyalValleyGraves_HeartPiece_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_RoyalValleyGraves_HeartPiece_top, 0x12C, 1, 1

gAreaRoomMap_RoyalValleyGraves_1:: @ 08107754
	map_bottom offset_gAreaRoomMap_RoyalValleyGraves_Gina_bottom, 0x258, 1
	map_top offset_gAreaRoomMap_RoyalValleyGraves_Gina_top, 0x258, 1, 1

gAreaRoomMaps_RoyalValleyGraves:: @ 0810776C
	.4byte gAreaRoomMap_RoyalValleyGraves_0
	.4byte gAreaRoomMap_RoyalValleyGraves_1

gAreaRoomMap_45_0:: @ 08107774
	map_bottom offset_gAreaRoomMap_45_0_bottom, 0x1FE, 1
	map_top offset_gAreaRoomMap_45_0_top, 0x1FE, 1, 1

gAreaRoomMaps_45:: @ 0810778C
	.4byte gAreaRoomMap_45_0

gAreaRoomMap_46_0:: @ 08107790
	map_bottom offset_gAreaRoomMap_Null46_0_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_Null46_0_top, 0x286, 1, 1

gAreaRoomMap_46_1:: @ 081077A8
	map_bottom offset_gAreaRoomMap_Null46_1_bottom, 0x30E, 1
	map_top offset_gAreaRoomMap_Null46_1_top, 0x30E, 1, 1

gAreaRoomMap_46_2:: @ 081077C0
	map_bottom offset_gAreaRoomMap_Null46_2_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_Null46_2_top, 0x286, 1, 1

gAreaRoomMap_46_3:: @ 081077D8
	map_bottom offset_gAreaRoomMap_Null46_3_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_Null46_3_top, 0x286, 1, 1

gAreaRoomMap_46_4:: @ 081077F0
	map_bottom offset_gAreaRoomMap_Null46_4_bottom, 0x30E, 1
	map_top offset_gAreaRoomMap_Null46_4_top, 0x30E, 1, 1

gAreaRoomMap_46_5:: @ 08107808
	map_bottom offset_gAreaRoomMap_Null46_5_bottom, 0x286, 1
	map_top offset_gAreaRoomMap_Null46_5_top, 0x286, 1, 1

gAreaRoomMap_46_6:: @ 08107820
	map_bottom offset_gAreaRoomMap_Null46_6_bottom, 0x720, 1
	map_top offset_gAreaRoomMap_Null46_6_top, 0x720, 1, 1

gAreaRoomMap_46_7:: @ 08107838
	map_bottom offset_gAreaRoomMap_Null46_7_bottom, 0x2F2, 1
	map_top offset_gAreaRoomMap_Null46_7_top, 0x2F2, 1, 1

gAreaRoomMaps_46:: @ 08107850
	.4byte gAreaRoomMap_46_0
	.4byte gAreaRoomMap_46_1
	.4byte gAreaRoomMap_46_2
	.4byte gAreaRoomMap_46_3
	.4byte gAreaRoomMap_46_4
	.4byte gAreaRoomMap_46_5
	.4byte gAreaRoomMap_46_6
	.4byte gAreaRoomMap_46_7

gAreaRoomMap_08107870:: @ 08107870
	map_bottom offset_gAreaRoomMap_08107870_0, 0xC80, 1
	map_top offset_gAreaRoomMap_08107870_1, 0xC80, 1, 1

@ Unused
	.4byte gAreaRoomMap_08107870

gAreaRoomMap_4D_0:: @ 0810788C
	map_bottom offset_gAreaRoomMap_4d_0_bottom, 0xCD0, 1
	map_top offset_gAreaRoomMap_4d_0_top, 0xCD0, 1, 1

gAreaRoomMaps_4D:: @ 081078A4
	.4byte gAreaRoomMap_4D_0

gAreaRoomMap_57_0:: @ 081078A8
	map_bottom offset_gAreaRoomMap_57_0_bottom, 0xC80, 1
	map_top offset_gAreaRoomMap_57_0_top, 0xC80, 1, 1

gAreaRoomMaps_57:: @ 081078C0
	.4byte gAreaRoomMap_57_0

gAreaRoomMap_5F_0:: @ 081078C4
	map_bottom offset_gAreaRoomMap_5f_0_bottom, 0xC80, 1
	map_top offset_gAreaRoomMap_5f_0_top, 0xC80, 1, 1

gAreaRoomMaps_5F:: @ 081078DC
	.4byte gAreaRoomMap_5F_0

gAreaRoomMap_67_0:: @ 081078E0
	map_bottom offset_gAreaRoomMap_67_0_bottom, 0x12C, 1
	map_top offset_gAreaRoomMap_67_0_top, 0x12C, 1, 1

gAreaRoomMaps_67:: @ 081078F8
	.4byte gAreaRoomMap_67_0

gAreaRoomMap_6F_0:: @ 081078FC
	map_bottom offset_gAreaRoomMap_6f_0_bottom, 0xC80, 1
	map_top offset_gAreaRoomMap_6f_0_top, 0xC80, 1, 1

gAreaRoomMaps_6F:: @ 08107914
	.4byte gAreaRoomMap_6F_0

gAreaRoomMap_77_0:: @ 08107918
	map_bottom offset_gAreaRoomMap_77_0_bottom, 0x1040, 1
	map_top offset_gAreaRoomMap_77_0_top, 0x1040, 1, 1

gAreaRoomMaps_77:: @ 08107930
	.4byte gAreaRoomMap_77_0

gAreaRoomMap_7F_0:: @ 08107934
	map_bottom offset_gAreaRoomMap_7f_0_bottom, 0xC80, 1
	map_top offset_gAreaRoomMap_7f_0_top, 0xC80, 1, 1

gAreaRoomMaps_7F:: @ 0810794C
	.4byte gAreaRoomMap_7F_0

gAreaRoomMap_87_0:: @ 08107950
	map_bottom offset_gAreaRoomMap_87_0_bottom, 0xF3C, 1
	map_top offset_gAreaRoomMap_87_0_top, 0xF3C, 1, 1

gAreaRoomMaps_87:: @ 08107968
	.4byte gAreaRoomMap_87_0

gAreaRoomMap_8F_0:: @ 0810796C
	map_bottom offset_gAreaRoomMap_8f_0_bottom, 0xFA0, 1
	map_top offset_gAreaRoomMap_8f_0_top, 0xFA0, 1, 1

gAreaRoomMaps_8F:: @ 08107984
	.4byte gAreaRoomMap_8F_0

gAreaRoomMaps:: @ 08107988
	.4byte gAreaRoomMaps_MinishWoods             @ 0x0
	.4byte gAreaRoomMaps_MinishVillage           @ 0x1
	.4byte gAreaRoomMaps_HyruleTown              @ 0x2
	.4byte gAreaRoomMaps_HyruleField             @ 0x3
	.4byte gAreaRoomMaps_CastorWilds             @ 0x4
	.4byte gAreaRoomMaps_Ruins                   @ 0x5
	.4byte gAreaRoomMaps_MtCrenel                @ 0x6
	.4byte gAreaRoomMaps_CastleGarden            @ 0x7
	.4byte gAreaRoomMaps_CloudTops               @ 0x8
	.4byte gAreaRoomMaps_RoyalValley             @ 0x9
	.4byte gAreaRoomMaps_VeilFalls               @ 0xA
	.4byte gAreaRoomMaps_LakeHylia               @ 0xB
	.4byte gAreaRoomMaps_LakeWoodsCave           @ 0xC
	.4byte gAreaRoomMaps_Beanstalks              @ 0xD
	.4byte gAreaRoomMaps_Empty                   @ 0xE
	.4byte gAreaRoomMaps_HyruleDigCaves          @ 0xF
	.4byte gAreaRoomMaps_MelarisMine             @ 0x10
	.4byte gAreaRoomMaps_MinishPaths            @ 0x11
	.4byte gAreaRoomMaps_CrenelMinishPaths       @ 0x12
	.4byte gAreaRoomMaps_DigCaves1               @ 0x13
	.4byte gAreaRoomMaps_CrenelDigCave           @ 0x14
	.4byte gAreaRoomMaps_FestivalTown            @ 0x15
	.4byte gAreaRoomMaps_VeilFallsDigCave        @ 0x16
	.4byte gAreaRoomMaps_CastorWildsDigCave      @ 0x17
	.4byte gAreaRoomMaps_OuterFortressOfWinds    @ 0x18
	.4byte gAreaRoomMaps_HyliaDigCaves           @ 0x19
	.4byte gAreaRoomMaps_VeilFallsTop            @ 0x1A
	.4byte gAreaRoomMaps_Unused                  @ 0x1B
	.4byte gAreaRoomMaps_Unused                  @ 0x1C
	.4byte gAreaRoomMaps_Unused                  @ 0x1D
	.4byte gAreaRoomMaps_Unused                  @ 0x1E
	.4byte gAreaRoomMaps_Unused                  @ 0x1F
	.4byte gAreaRoomMaps_MinishHouseInteriors    @ 0x20
	.4byte gAreaRoomMaps_HouseInteriors1         @ 0x21
	.4byte gAreaRoomMaps_HouseInteriors2         @ 0x22
	.4byte gAreaRoomMaps_HouseInteriors3         @ 0x23
	.4byte gAreaRoomMaps_TreeInteriors           @ 0x24
	.4byte gAreaRoomMaps_Dojos                   @ 0x25
	.4byte gAreaRoomMaps_CrenelCaves             @ 0x26
	.4byte gAreaRoomMaps_MinishCracks            @ 0x27
	.4byte gAreaRoomMaps_HouseInteriors4         @ 0x28
	.4byte gAreaRoomMaps_GreatFairies            @ 0x29
	.4byte gAreaRoomMaps_CastorCaves             @ 0x2A
	.4byte gAreaRoomMaps_CastorDarknut           @ 0x2B
	.4byte gAreaRoomMaps_ArmosInteriors          @ 0x2C
	.4byte gAreaRoomMaps_TownMinishHoles         @ 0x2D
	.4byte gAreaRoomMaps_MinishRafters           @ 0x2E
	.4byte gAreaRoomMaps_GoronCave               @ 0x2F
	.4byte gAreaRoomMaps_WindTribeTower          @ 0x30
	.4byte gAreaRoomMaps_WindTribeTowerRoof      @ 0x31
	.4byte gAreaRoomMaps_Caves                   @ 0x32
	.4byte gAreaRoomMaps_VeilFallsCaves          @ 0x33
	.4byte gAreaRoomMaps_RoyalValleyGraves       @ 0x34
	.4byte gAreaRoomMaps_MinishCaves             @ 0x35
	.4byte gAreaRoomMaps_CastleGardenMinishHoles @ 0x36
	.4byte gAreaRoomMaps_37                      @ 0x37
	.4byte gAreaRoomMaps_EzloCutscene            @ 0x38
	.4byte gAreaRoomMaps_Unused                  @ 0x39
	.4byte gAreaRoomMaps_Unused                  @ 0x3A
	.4byte gAreaRoomMaps_Unused                  @ 0x3B
	.4byte gAreaRoomMaps_Unused                  @ 0x3C
	.4byte gAreaRoomMaps_Unused                  @ 0x3D
	.4byte gAreaRoomMaps_Unused                  @ 0x3E
	.4byte gAreaRoomMaps_Unused                  @ 0x3F
	.4byte gAreaRoomMaps_40                      @ 0x40
	.4byte gAreaRoomMaps_HyruleTownUnderground   @ 0x41
	.4byte gAreaRoomMaps_GardenFountains         @ 0x42
	.4byte gAreaRoomMaps_HyruleCastleCellar      @ 0x43
	.4byte gAreaRoomMaps_SimonsSimulation        @ 0x44
	.4byte gAreaRoomMaps_45                      @ 0x45
	.4byte gAreaRoomMaps_46                      @ 0x46
	.4byte gAreaRoomMaps_47                      @ 0x47
	.4byte gAreaRoomMaps_DeepwoodShrine          @ 0x48
	.4byte gAreaRoomMaps_DeepwoodShrineBoss      @ 0x49
	.4byte gAreaRoomMaps_DeepwoodShrineEntry     @ 0x4A
	.4byte gAreaRoomMaps_Unused                  @ 0x4B
	.4byte gAreaRoomMaps_Unused                  @ 0x4C
	.4byte gAreaRoomMaps_4D                      @ 0x4D
	.4byte gAreaRoomMaps_Unused                  @ 0x4E
	.4byte gAreaRoomMaps_Unused                  @ 0x4F
	.4byte gAreaRoomMaps_CaveOfFlames            @ 0x50
	.4byte gAreaRoomMaps_CaveOfFlamesBoss        @ 0x51
	.4byte gAreaRoomMaps_Unused                  @ 0x52
	.4byte gAreaRoomMaps_Unused                  @ 0x53
	.4byte gAreaRoomMaps_Unused                  @ 0x54
	.4byte gAreaRoomMaps_Unused                  @ 0x55
	.4byte gAreaRoomMaps_Unused                  @ 0x56
	.4byte gAreaRoomMaps_57                      @ 0x57
	.4byte gAreaRoomMaps_FortressOfWinds         @ 0x58
	.4byte gAreaRoomMaps_FortressOfWindsTop      @ 0x59
	.4byte gAreaRoomMaps_InnerMazaal             @ 0x5A
	.4byte gAreaRoomMaps_Unused                  @ 0x5B
	.4byte gAreaRoomMaps_Unused                  @ 0x5C
	.4byte gAreaRoomMaps_Unused                  @ 0x5D
	.4byte gAreaRoomMaps_Unused                  @ 0x5E
	.4byte gAreaRoomMaps_5F                      @ 0x5F
	.4byte gAreaRoomMaps_TempleOfDroplets        @ 0x60
	.4byte gAreaRoomMaps_61                      @ 0x61
	.4byte gAreaRoomMaps_HyruleTownMinishCaves   @ 0x62
	.4byte gAreaRoomMaps_Unused                  @ 0x63
	.4byte gAreaRoomMaps_Unused                  @ 0x64
	.4byte gAreaRoomMaps_Unused                  @ 0x65
	.4byte gAreaRoomMaps_Unused                  @ 0x66
	.4byte gAreaRoomMaps_67                      @ 0x67
	.4byte gAreaRoomMaps_RoyalCrypt              @ 0x68
	.4byte gAreaRoomMaps_Unused                  @ 0x69
	.4byte gAreaRoomMaps_Unused                  @ 0x6A
	.4byte gAreaRoomMaps_Unused                  @ 0x6B
	.4byte gAreaRoomMaps_Unused                  @ 0x6C
	.4byte gAreaRoomMaps_Unused                  @ 0x6D
	.4byte gAreaRoomMaps_Unused                  @ 0x6E
	.4byte gAreaRoomMaps_6F                      @ 0x6F
	.4byte gAreaRoomMaps_PalaceOfWinds           @ 0x70
	.4byte gAreaRoomMaps_PalaceOfWindsBoss       @ 0x71
	.4byte gAreaRoomMaps_Unused                  @ 0x72
	.4byte gAreaRoomMaps_Unused                  @ 0x73
	.4byte gAreaRoomMaps_Unused                  @ 0x74
	.4byte gAreaRoomMaps_Unused                  @ 0x75
	.4byte gAreaRoomMaps_Unused                  @ 0x76
	.4byte gAreaRoomMaps_77                      @ 0x77
	.4byte gAreaRoomMaps_Sanctuary               @ 0x78
	.4byte gAreaRoomMaps_Unused                  @ 0x79
	.4byte gAreaRoomMaps_Unused                  @ 0x7A
	.4byte gAreaRoomMaps_Unused                  @ 0x7B
	.4byte gAreaRoomMaps_Unused                  @ 0x7C
	.4byte gAreaRoomMaps_Unused                  @ 0x7D
	.4byte gAreaRoomMaps_Unused                  @ 0x7E
	.4byte gAreaRoomMaps_7F                      @ 0x7F
	.4byte gAreaRoomMaps_HyruleCastle            @ 0x80
	.4byte gAreaRoomMaps_SanctuaryEntrance       @ 0x81
	.4byte gAreaRoomMaps_Unused                  @ 0x82
	.4byte gAreaRoomMaps_Unused                  @ 0x83
	.4byte gAreaRoomMaps_Unused                  @ 0x84
	.4byte gAreaRoomMaps_Unused                  @ 0x85
	.4byte gAreaRoomMaps_Unused                  @ 0x86
	.4byte gAreaRoomMaps_87                      @ 0x87
	.4byte gAreaRoomMaps_DarkHyruleCastle        @ 0x88
	.4byte gAreaRoomMaps_DarkHyruleCastleOutside @ 0x89
	.4byte gAreaRoomMaps_VaatisArms              @ 0x8A
	.4byte gAreaRoomMaps_Vaati3                  @ 0x8B
	.4byte gAreaRoomMaps_Vaati2                  @ 0x8C
	.4byte gAreaRoomMaps_DarkHyruleCastleBridge  @ 0x8D
	.4byte gAreaRoomMaps_Unused                  @ 0x8E
	.4byte gAreaRoomMaps_8F                      @ 0x8F