-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMapData.lua
3416 lines (3328 loc) · 298 KB
/
MapData.lua
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
-----------------------------------------
-- LOCALIZED GLOBAL VARIABLES
-----------------------------------------
local ZGV = _G.ZGV
ZGV.MapData = {
["ZoneNameToTex"] =
{
-- Aldmeri Dominion
-- Khenarthi's Roost
["Khenarthi's Roost"] = [[khenarthisroost_base]],
["Temple of the Mourning Spring"] = [[templeofthemourningspring_base]],
["Shattered Shoals"] = [[shatteredshoals_base]],
["Hazak's Lair"] = [[themangroves_base]],
["The Mangroves"] = [[themangroves_base]],
["Mistral"] = [[mistral_base]],
["Cat's Eye Quay"] = [[catseyequay_base]],
-- Auridon
["Vulkhel Guard"] = [[vulkhelguard_base]],
["Vulkhel Guard Outlaws Refuge"] = [[auridonoutlawrefuge_base]],
["Auridon"] = [[auridon_base]],
["Del's Claim"] = [[delsclaim_base]],
["Ondil"] = [[ondil_base]],
["Phaer Catacombs"] = [[phaercatacombs_base]],
["Inner Tanzelwil"] = [[innertanzelwil_base]],
["Tower of the Vale - Temple"] = [[temple_base]],
["Tower of the Vale - Rage"] = [[rage_base]],
["Tower of the Vale - Bliss"] = [[blisslower_base]],
["Tower of the Vale - Bliss Top"] = [[blisstop_base]],
["Tower of the Vale - Despair"] = [[despair_base]],
["Entila's Folly"] = [[entilasfolly_base]],
["Smugglers Tunnel"] = [[smugglerstunnel_base]],
["Skywatch"] = [[skywatch_base]],
["The Veiled Keep"] = [[veiledKeepBase]],
["Ezduiin Undercroft"] = [[ezduiin_base]],
["Wansalen"] = [[wansalen_base]],
["Quendeluun South Ruins"] = [[southruins_base]],
["Abandoned Mine"] = [[abandonedmine_base]],
["Bewan"] = [[bewan_base]],
["Saltspray Cave"] = [[saltspray_base]],
["Torinaan Shrine"] = [[torinaan3_base]],
["Torinaan Shrine"] = [[torinaan2_base]],
["Torinaan Shrine"] = [[torinaan5_base]],
["Torinaan Shrine"] = [[torinaan4_base]],
["Torinaan Shrine"] = [[torinaan1_base]],
["Mehrunes' Spite"] = [[mehrunesspite_base]],
["The Vault of Exile"] = [[thevaultofexile_base]],
["Firsthold"] = [[firsthold_base]],
["The Refuge of Dread"] = [[therefugeofdread_base]],
-- Grahtwood
["Haven"] = [[haven_base]],
["Haven Sewers"] = [[havensewers_base]],
["Grahtwood"] = [[grahtwood_base]],
["Sacred Leap Grotto"] = [[sacredleapgrotto_base]],
["The Scuttle Pit"] = [[dessicatedcave_base]],
["Brackenleaf"] = [[brackenleaf_base]],
["Elden Root"] = [[eldenrootgroundfloor_base]],
["Elden Root"] = [[eldenrootservices_base]],
["Elden Root"] = [[eldenrootcrafting_base]],
["Elden Root Mages Guid"] = [[eldenrootmagesguilddown_base]],
["Elden Root Throne Room"] = [[eldenrootthroneroom_base]],
["Elden Root Fighters Guild"] = [[eldenrootfightersguildup_base]],
["Elden Root Fighters Guild"] = [[eldenrootfightersguildown_base]],
["Elden Root Outlaws Refuge"] = [[grahtwoodoutlawrefuge_base]],
["Cave of Broken Sails"] = [[caveofbrokensails_base]],
["Gray Mire"] = [[greymire_base]],
["Bone Orchard"] = [[boneorchard_base]],
["Cathedral of the Golden Path"] = [[southpoint_base]],
["Ne Salas"] = [[nesalas_base]],
["Mobar Mine"] = [[mobarmine_base]],
["The Middens"] = [[themiddens_base]],
["Vinedeath Cave"] = [[vindeathcave_base]],
["Ossuary of Telacar"] = [[ossuaryoftelacar_base]],
["Laeloria Ruins"] = [[laeloriaruins_base]],
["Karthdar"] = [[karthdar_base]],
["Cormount Prison"] = [[cormountprison_base]],
["Reliquary Ruins"] = [[reliquaryofstars_base]],
["Reliquary Vault"] = [[reliquaryvaulttop_base]],
["Reliquary Vault"] = [[reliquaryvaultbottom_base]],
["Ancient Cave"] = [[coromount_base]],
["Faltonia's Mine"] = [[faltoniasmine_base]],
["Barkbite Cave"] = [[barkbitecave_base]],
["Barkbite Mine"] = [[barkbitemine_base]],
["Redfur Trading Post"] = [[redfurtradingpost_base]],
["Tomb of Anahbi"] = [[tombofanahbi_base]],
["Burroot Kwama Mine"] = [[burrootkwamamine_base]],
["Gil-Var-Delle Abandoned Cave"] = [[gilvardelleabandoncave]],
["Nairume's Prison"] = [[rajhinsvault_base]],
["Nairume's Prison"] = [[rajhinsvaultsmallroom_base]],
["The Orrery"] = [[orrery_base]],
["Wormroot Depths"] = [[wormrootdepths_base]],
-- Greenshade
["Marbruk"] = [[marbruk_base]],
["Marbruk Outlaws Refuge"] = [[MarbrukOutlawsRefuge_base]],
["Greenshade"] = [[greenshade_base]],
["Gurzag's Mine"] = [[gurzagsmine_base]],
["Camp Gushnukbur"] = [[campgushnukbur_base]],
["Shrouded Hollow"] = [[shroudedhollowarea1_base]],
["Shrouded Hollow"] = [[shroudedhollowarea2_base]],
["Fading Tree"] = [[shroudedhollowcenter_base]],
["Carac Dena"] = [[caracdena_base]],
["Silatar"] = [[silatar_base]],
["Hollow Den"] = [[hollowlair_base]],
["Shademist Enclave"] = [[shademistenclave_base]],
["Naril Nagaia"] = [[narilnagaia_base]],
["Woodhearth"] = [[woodhearth_base]],
["Imperial Underground"] = [[imperialundergroundpart1_base]],
["Imperial Underground"] = [[imperialundergroundpart2_base]],
["Ilmyris"] = [[ilmyris_base]],
["Serpent's Grotto"] = [[serpentsgrotto_base]],
["The Underroot"] = [[theunderroot_base]],
["Abecean Sea"] = [[albeceansea_base]],
["Old Merchant Caves"] = [[oldmerchantcaves_base]],
["Harridan's Lair"] = [[harridanslair_base]],
["Nereid Temple Cave"] = [[nereidtemple_base]],
["Falinesti Cave"] = [[falinesticaveupper_base]],
["Falinesti Cave"] = [[falinesticave_base]],
["Hectahame Grotto"] = [[hectahamegrottomain_base]],
["Hectahame Grotto"] = [[hectahamegrottoarboretum_base]],
["Hectahame Grotto"] = [[hectahamegrottoritual_base]],
["Hectahame Grotto"] = [[hectahamegrottoarmory_base]],
["Valenheart"] = [[hectahamegrottovalenheart_base]],
["Isles of Torment"] = [[islesoftorment_base]],
["Barrow Trench"] = [[barrowtrench_base]],
-- Malbal Tor
["Velyn Harbor"] = [[velynharbor_base]],
["Velyn Harbor Outlaws Refuge"] = [[malabaltoroutlawrefuge_base]],
["Malabal Tor"] = [[malabaltor_base]],
["Stormwarden Undercroft"] = [[stormwardenundercroft_base]],
["Dead Man's Drop"] = [[deadmansdrop_base]],
["Tomb of Apostates"] = [[tomboftheapostates_base]],
["Hoarvor Pit"] = [[hoarvorpit_base]],
["Vulkwasten"] = [[vulkwasten_base]],
["Ogrim's Yawn"] = [[ogrimsyawn_base]],
["Abamath Ruins"] = [[abamath_base]],
["Shrine of Mauloch"] = [[shrineofmauloch_base]],
["Shael Ruins"] = [[shaelruins_base]],
["Belarate"] = [[belarata_base]],
["Roots of Silvenar"] = [[rootsofsilvenar_base]],
["Ouze"] = [[ouze_base]],
["Baandari Trading Post"] = [[baandaritradingpost_base]],
["Roots of Treehenge"] = [[rootsoftreehenge_base]],
["Black Vine Ruins"] = [[blackvineruins_base]],
["The Hunting Grounds"] = [[thehuntinggrounds_base]],
["Silvernar Throne Room"] = [[silvenarthroneroom_base]],
-- Reapers March
["Reaper's March"] = [[reapersmarch_base]],
["Vinedusk Village Corridor"] = [[vineduckvillagecorridor_base]],
["Vinedusk Village"] = [[vineduckvillage_base]],
["Khaj Rawlith"] = [[khajrawlith_base]],
["Senalana"] = [[senelana_base]],
["Arenthia"] = [[arenthia_base]],
["Greenhill Catacombs"] = [[greenhillcatacombs_base]],
["Thibaut's Cairn"] = [[thibautscairn_base]],
["Halls of Ichor"] = [[hallsofichor_base]],
["Rawl'kha"] = [[rawlkha_base]],
["Rawl'kha Temple"] = [[rawlkhatemple_base]],
["Rawl'kha Outlaws Refuge"] = [[reapersmarchoutlawrefuge_base]],
["Weeping Wind Cave"] = [[weepingwindcave_base]],
["Moonmont Temple"] = [[moonmonttemple_base]],
["Do'Krin Temple"] = [[dokrintemple_base]],
["The Five Finger Dance"] = [[thefivefingerdance]],
["Claw's Strike"] = [[clawsstrike_base]],
["S'ren-ja Bandit Cave"] = [[sren-ja1_base]],
["S'ren-ja Well"] = [[sren-ja2_base]],
["S'ren-ja Cave"] = [[sren-ja_base]],
["Jode's Light"] = [[jodeslight_base]],
["Kuna's Delve"] = [[kunasdelve_base]],
["Ren-dro Caverns"] = [[rendrocaverns_base]],
["Fort Sphinxmoth"] = [[fortsphinxmoth_base]],
["Fardir's Folly"] = [[fardirsfolly_base]],
["Dune"] = [[dune_base]],
["Temple of the Dance"] = [[planeofjodetemple_base]],
["The Demi-Plane of Jode"] = [[planeofjodehubhillbos_base]],
["The Demi-Plane of Jode"] = [[planeofjodecave_base]],
["The Wild Hunt"] = [[jodeplane_base]],
["Urcelmo's Betrayal"] = [[urcelmosbetrayal_base]],
["Den of Lorkhaj"] = [[planeofjodedenoflorkhaj_base]],
-- Daggerfall Covenant
-- Stros M'Kai
["Port Hunding"] = [[porthunding_base]],
["The Grave"] = [[thegrave_base]],
["Stros M'Kai"] = [[strosmkai_base]],
["Goblin Mines"] = [[goblinminesstart_base]],
["Goblin Mines"] = [[goblinminesend_base]],
["Bthzark"] = [[bthzark_base]],
-- Betnikh
["Stonetooth Fortress"] = [[stonetoothfortress_base]],
["Betnikh"] = [[betnihk_base]],
["Bloodthorn Lair"] = [[bloodthornlair_base]],
["Ancient Carzog's Demise"] = [[ancientcarzogsdemise_base]],
["Moriseli"] = [[moriseli_base]],
["Carzog's Demise"] = [[carzogsdemise_base]],
-- Glenumbra
["Daggerfall"] = [[daggerfall_base]],
["Daggerfall Outlaws Refuge"] = [[glenumbraoutlawrefuge_base]],
["Glenumbra"] = [[glenumbra_base]],
["Ilessan Tower"] = [[ilessantower_base]],
["East Hut Portal Cave"] = [[east_hut_portal_cave_base]],
["South Hut Portal Cave"] = [[south_hut_portal_cave_base]],
["West Hut Portal Cave"] = [[west_hut_portal_cave_base]],
["North Hut Portal Cave"] = [[north_hut_portal_cave_base]],
["Silumm"] = [[silumm_base]],
["Enduum"] = [[enduum_base]],
["Dresan Keep"] = [[dresankeep_base]],
["Aldcroft"] = [[aldcroft_base]],
["The Mines of Khuras"] = [[minesofkhuras_base]],
["Glenumbra Camlorn Keep"] = [[glenumbracamlornkeep_base]],
["Desolation's End"] = [[desolationsend_base]],
["Ebon Crypt"] = [[eboncrypt_base]],
["Cath Bedraud"] = [[cathbedraud_base]],
["Angof's Sanctum"] = [[angofssanctum_base]],
["Tomb of Lost Kings"] = [[tomboflostkings_base]],
["Cryptwatch Fort"] = [[cryptwatchfort_base]],
["Crosswych"] = [[crosswych_base]],
["Crosswych Mine"] = [[crosswychmine_base]],
-- Stormhaven
["Koeglin Village"] = [[koeglinvillage_base]],
["Koeglin Mine"] = [[koeglinmine_base]],
["Stormhaven"] = [[stormhaven_base]],
["Alcaire Castle"] = [[alcairecastle_base]],
["Windridge Cave"] = [[windridgecave_base]],
["Portdun Watch"] = [[portdunwatch_base]],
["Pariah Catacombs"] = [[pariahcatacombs_base]],
["Wayrest"] = [[wayrest_base]],
["Wayrest Outlaws Refuge"] = [[stormhavenoutlawrefuge_base]],
["Farangel's Delve"] = [[farangelsdelve_base]],
["Bearclaw Mine"] = [[bearclawmine_base]],
["Godrun's Dream"] = [[godrunsdream_base]],
["Norvulk Ruins"] = [[norvulkruins_base]],
["Aphren's Tomb"] = [[aphrenshold_base]],
["Emeric's Dream"] = [[emericsdream_base]],
["Emeric's Dream"] = [[emericsdquagmireportion_base]],
-- Rivenspire
["Rivenspire"] = [[rivenspire_base]],
["Shornhelm"] = [[shornhelm_base]],
["Shornhelm Outlaws Refuge"] = [[Rivenspire Outlaw_Base]],
["Fevered Mews"] = [[fevered_mews_base]],
["Fevered Mews"] = [[fevered_mews_subzone_base]],
["Crestshade Mine"] = [[crestshademine_base]],
["Doomcrag"] = [[doomcragshroudedpass_base]],
["Doomcrag"] = [[doomcragground_base]],
["Doomcrag"] = [[doomcragmiddle_base]],
["Doomcrag"] = [[doomcragtop_base]],
["Shadowfate Cavern"] = [[shadowfatecavern_base]],
["Hoarfrost Downs"] = [[hoarfrost_base]],
["Tribulation Crypt"] = [[tribulationcrypt_base]],
["Lorkrata Ruins"] = [[lorkrataruinsa_base]],
["Lorkrata Ruins"] = [[lorkrataruinsb_base]],
["Edrald Undercroft"] = [[edraldundercroftdomed_base]],
["Edrald Undercroft"] = [[edraldundercroft_base]],
["Flyleaf Catacombs"] = [[flyleafcatacombs_base]],
["Northpoint"] = [[northpoint_base]],
["Breagha-Fin"] = [[breaghafinlower_base]],
["Breagha-Fin"] = [[breaghafinupper_base]],
["Orc's Finger Ruins"] = [[orcsfingerruins_base]],
["Hildune's Secret Refuge"] = [[hildunessecretrefuge_base]],
["Erokii Ruins"] = [[erokii_base]],
["Shrouded Pass"] = [[shroudedpass_base]],
["Shrouded Pass"] = [[shroudedpass2_base]],
-- Alik'r Desert
["Sentinel"] = [[sentinel_base]],
["Sentinel Outlaws Refuge"] = [[alkiroutlawrefuge_base]],
["Alik'r Desert"] = [[alikr_base]],
["Shore Cave"] = [[shorecave_base]],
["Impervious Vault"] = [[imperviousvault_base]],
["Santaki"] = [[santaki_base]],
["Salas En"] = [[salasen_base]],
["The Portal Chamber"] = [[the_portal_chamber_map_base]],
["Ash'abah Pass"] = [[ashaba_base]],
["Yokudan Palace"] = [[yokudanpalace_base]],
["Yokudan Palace"] = [[yokudanpalace02_base]],
["Divad's Chagrin Mine"] = [[divadschagrinmine_base]],
["Bergama"] = [[bergama_base]],
["Magistrate's Basement"] = [[magistratesbasement_base]],
["Aldunz"] = [[aldunz_base]],
["The Master's Crypt"] = [[the_masters_crypt_base]],
["Kulati Mines"] = [[kulatimines-a_base]],
["Kulati Mines"] = [[kulatimines-b_base]],
["Coldrock Diggings"] = [[coldrockdiggings_base]],
["Sandblown Mine"] = [[sandblownmine_base]],
["Yldzuun"] = [[yldzuun_base]],
["Kozanset"] = [[kozanset_base]],
["Smuggler King Tunnel"] = [[smugglerkingtunnel_base]],
["Suturah's Crypt"] = [[suturahs_crypt_base]],
-- Bangkorai
["Evermore"] = [[evermore_base]],
["Evermore Outlaws Refuge"] = [[bangkoraioutlawrefuge_base]],
["Bangkorai"] = [[bangkorai_base]],
["Bisnensel"] = [[bisnensel_base]],
["Torog's Spite"] = [[murciensclaim_base]],
["Crypt of the Exiles"] = [[cryptoftheexiles_base]],
["Troll's Toothpick"] = [[trollstoothpick_base]],
["Nchu Duabthar Threshold"] = [[nchuduabtharthreshold_base]],
["Viridian Watch"] = [[viridianwatch_base]],
["Bangkorai Garrison"] = [[bangkoraigarrisonsewer_base]],
["Bangkorai Garrison"] = [[bangkoraigarrisontop_base]],
["Bangkorai Garrison"] = [[bangkoraigarrisonbtm_base]],
["Bangkorai Garrison"] = [[bangkoraigarrison_alt_base]],
["Sunken Road"] = [[sunkenroad_base]],
["Klathzgar"] = [[jaggerjaw_base]],
["Rubble Butte"] = [[rubblebutte_base]],
["Nilata Ruins"] = [[nilataruins_base]],
["Anexiel's Lair"] = [[nilataruinsboss_base]],
["Hallin's Stand"] = [[hallinsstand_base]],
["Onsi's Breath Mine"] = [[onsisbreathmine_base]],
["Hall of Heroes"] = [[hallofheroes_base]],
["The Far Shores"] = [[thefarshores_base]],
-- Ebonheart Pact
-- Bleakrock Isle
["Bleakrock Village"] = [[bleakrockvillage_base]],
["Bleakrock Isle"] = [[bleakrock_base]],
["Skyshroud Barrow"] = [[skyshroudbarrow_base]],
["Hozzin's Folly"] = [[hozzinsfolley_base]],
["Orkey's Hollow"] = [[orkeyshollow_base]],
["Last Rest"] = [[lastresortbarrow_base]],
-- Bal Foyen
["Bal Foyen"] = [[balfoyen_base]],
["Dhalmora"] = [[dhalmora_base]],
["Smuggler Tunnel"] = [[smugglertunnel_base]],
-- Stonefalls
["Stonefalls"] = [[stonefalls_base]],
["Davon's Watch"] = [[davonswatch_base]],
["House Indoril Crypt"] = [[davonswatchcrypt_base]],
["Davon's Watch Outlaws Refuge"] = [[stonefallsoutlawrefuge_base]],
["Charred Ridge"] = [[charredridge_base]],
["Ash Mountain"] = [[ashmountain_base]],
["Inner Sea Armature"] = [[innerseaarmature_base]],
["Emberflint Mine"] = [[emberflintmine_base]],
["Mephala's Nest"] = [[mephalasnest_base]],
["Fort Arand Dungeons"] = [[fortarand_base]],
["Ebonheart"] = [[ebonheart_base]],
["Coral Heart Chamber"] = [[coralheartchamber_base]],
["Softloam Cavern"] = [[hightidehollow_base]],
["Heimlyn Keep Reliquary"] = [[heimlynkeepreliquary_base]],
["Fort Virak Ruin"] = [[fortvirakruin_base]],
["Iliath Temple Mines"] = [[iliathtempletunnels_base]],
["Sheogorath's Tongue"] = [[sheogorathstongue_base]],
["Kragenmoor"] = [[kragenmoor_base]],
["House Dres Crypts"] = [[housedrescrypts_base]],
["Hightide Hollow"] = [[softloamcavern_base]],
["Tormented Spire"] = [[tormented_spire_base]],
["Tormented Spire"] = [[tormentedspireinstance_base]],
-- Deshaan
["Deshaan"] = [[deshaan_base]],
["Quarantine Serk Catacombs"] = [[quarantineserk_base]],
["Narsis"] = [[narsis_base]],
["Narsis Ruins"] = [[narsisruins_base]],
["Lady Llarel's Shelter"] = [[kwamacolony_base]],
["Obsidian Gorge"] = [[obsidiangorge_base]],
["Apothacarium"] = [[apothacarium_base]],
["Mzithumz"] = [[mzithumz_base]],
["Mournhold"] = [[mournhold_base]],
["Mournhold Sewers"] = [[mournholdsewers_base]],
["Mournhold Outlaws Refuge"] = [[MournholdOutlawsRefuge_base]],
["The Triple Circle Mine"] = [[triplecirclemine_base]],
["Tribunal Temple"] = [[tribunaltemple_base]],
["Bthanual"] = [[bthanual_base]],
["Lower Bthanual"] = [[lowerbthanuel_base]],
["Deepcrag Den"] = [[deepcragden_base]],
["Shad Astula Underhalls"] = [[shadastula_base]],
["Taleon's Crag"] = [[unexploredcrag_base]],
["Vale of the Ghost Snake"] = [[valeoftheghostsnake_base]],
["Tal'Deic Crypts"] = [[taldeiccrypts_base]],
["The Shrine of St. Veloth"] = [[theshrineofstveloth_base]],
["The Corpse Garden"] = [[corpsegarden_base]],
["Knife Ear Grotto"] = [[desolatecave_base]],
["Eidolon's Hollow"] = [[eidolonshollow2_base]],
["Reservoir of Souls"] = [[welloflostsouls_base]],
-- Shadowfen
["Stormhold"] = [[stormhold_base]],
["Stormhold Guild Hall"] = [[stormholdguildhall_map]],
["Stormhold Mortuary"] = [[stormholdmortuary_map]],
["Silyanorn Ruins"] = [[stormholdayleidruin_base]],
["Shadowfen"] = [[shadowfen_base]],
["Stormhold Outlaws Refuge"] = [[shadowfenoutlawrefuge_base]],
["Shrine of the Black Maw"] = [[shrineofblackworm_base]],
["Odious Chapel"] = [[stillrisevillage_base]],
["Mud Tree Mine"] = [[mudtreemine_base]],
["Mudshallow Cave"] = [[mudshallowcave_base]],
["Ruins of Ten-Maur-Wolk"] = [[skinstealerlair_base]],
["Lair of the Skin Stealer"] = [[tenmaurwolk_base]],
["Alten Corimont"] = [[altencorimont_base]],
["Tsanji's Hideout"] = [[tsanji_base]],
["Atanaz Ruins"] = [[atanazruins_base]],
["Broken Tusk"] = [[brokentuskcave_base]],
["Onkobra Kwama Mine"] = [[onkobrakwamamine_base]],
["Percolating Mire"] = [[sf_percolatingmire_map]],
["Sunscale Ruins"] = [[sunscaleenclave_base]],
["Gandranen Ruins"] = [[gandranen_base]],
["Temple of Sul"] = [[templeofsul_base]],
["Hissmir Ruins"] = [[hissmirruins_map]],
["White Rose Prison Dungeon"] = [[whiteroseprison_base]],
["Chid-Moska Ruins"] = [[chidmoskaruins_base]],
["Loriasel"] = [[loriasellowerlevel_base]],
["Loriasel"] = [[loriasel_base]],
["Vision of the Hist"] = [[visionofthehist_base]],
-- Eastmarch
["Windhelm"] = [[windhelm_base]],
["Windhelm Outlaws Refuge"] = [[eastmarchrefuge_base]],
["The Chill Hollow"] = [[thechillhollow_base]],
["Eastmarch"] = [[eastmarch_base]],
["Hall of Trials"] = [[halloftrials_base]],
["Icehammer's Vault"] = [[icehammersvault_base]],
["Fort Morvunskar"] = [[fortmorvunskar_base]],
["Giant's Run"] = [[giantsrun_base]],
["Fort Amol"] = [[fortamol_base]],
["Lost Knife Cave"] = [[lostknifecave_base]],
["The Frigid Grotto"] = [[thefrigidgrotto_base]],
["Bonestrewn Crest"] = [[bonestrewncrest_base]],
["Wittestadr Crypts"] = [[wittestadrcrypts_base]],
["Mistwatch Crevasse"] = [[mistwatchcrevassecrypt_base]],
["Mistwatch Crevasse"] = [[mistwatchtower_base]],
["Old Sord's Cave"] = [[oldsordscave_base]],
["Stormcrag Crypt"] = [[stormcragcrypt_base]],
["The Bastard's Tomb"] = [[thebastardstomb_base]],
["Mzulft"] = [[mzulft_base]],
["Cragwallow"] = [[Cragwallow_base]],
-- The Rift
["Shor's Stone"] = [[shorsstone_base]],
["Shor's Stone Mine"] = [[shorsstonemine_base]],
["The Rift"] = [[therift_base]],
["Fallowstone Vault"] = [[fallowstonevault_base]],
["Northwind Mine"] = [[northwindmine_base]],
["Vaults of Vernim"] = [[vernimwood_base]],
["Snapleg Cave"] = [[snaplegcave_base]],
["Nimalten"] = [[nimalten_base]],
["Nimalten Barrow"] = [[nimaltenpart1_base]],
["Nimalten Barrow"] = [[nimaltenpart2_base]],
["Shroud Hearth Barrow"] = [[shroudhearth_base]],
["Pinepeak Caverns"] = [[pinepeakcaverns_base]],
["Taarengrav Barrow"] = [[taarengrav_base]],
["Arcwind Point"] = [[arcwindpoint_base]],
["Broken Helm Hollow"] = [[ebonmeretower_base]],
["Avanchnzel"] = [[avancheznel_base]],
["Riften"] = [[riften_base]],
["Riften Outlaws Refuge"] = [[RiftOutlaw_base]],
["Fort Greenwall"] = [[fortgreenwall_base]],
["Lost Prospect"] = [[lostprospect_base]],
["Lost Prospect"] = [[lostprospect2_base]],
["Broken Helm"] = [[brokenhelm_base]],
["Forelhost"] = [[forelhost_base]],
["Trolhetta Cave"] = [[trolhettacave_base]],
["Trolhetta Summit"] = [[trolhettasummit_base]],
-- Coldharbour
["Stirk"] = [[stirk_base]],
["Coldharbour"] = [[coldharbour_base]],
["The Hollow City"] = [[hollowcity_base]],
["Tower of Lies"] = [[toweroflies_base]],
["Cave of Trophies"] = [[depravedgrotto_base]],
["Haj Uxith"] = [[hajuxith_base]],
["Library of Dusk"] = [[thelibrarydusk_base]],
["Library of Dusk"] = [[libraryofdusk_base]],
["Lightless Oubliette"] = [[lightlessoubliette_base]],
["Lightless Oubliette"] = [[lightlessoubliettelava_base]],
["Lightless Cell"] = [[lightlesscell_base]],
["Aba-Loria"] = [[aba-loria_base]],
["Reaver Citadel Pyramid"] = [[thevilelaboratory_base]],
["Holding Cells"] = [[courtofcontempt_base]],
["The Cave of Trophies"] = [[caveoftrophies_base]],
["The Vault of Haman Forgefire"] = [[vaultofhamanforgefire_base]],
["Thane's Lair"] = [[theeverfullflagon_base]],
["The Black Forge"] = [[blackforge_base]],
["The Great Shackle"] = [[greatshackle1_base]],
["The Mooring"] = [[themooring_base]],
["Grunda's Gatehouse"] = [[grundasgatehousemain_base]],
["Grunda's Gatehouse"] = [[grundasgatehouseroom_base]],
["Mal Sorra's Tomb"] = [[malsorrastomb_base]],
["Manor of Revelry"] = [[themanorofrevelry_base]],
["Manor of Revelry"] = [[manorofrevelryint01_base]],
["Manor of Revelry"] = [[manorofrevelryint02_base]],
["Manor of Revelry"] = [[manorofrevelryint05_base]],
["Manor of Revelry"] = [[manorofrevelryint03_base]],
["Manor of Revelry"] = [[manorofrevelryint04_base]],
["Cave of Revelry"] = [[manorofrevelrycave_base]],
["The Wailing Maw"] = [[wailingmaw_base]],
["The Lost Fleet"] = [[thelostfleet_base]],
["Reaver Citadel Pyramid"] = [[reavercitadelpyramid_base]],
["The Endless Stair"] = [[theendlessstair_base]],
-- Five Companions
["The Wailing Prison"] = [[wailingprison1_base]],
["The Wailing Prison"] = [[wailingprison2_base]],
["The Wailing Prison"] = [[wailingprison4_base]],
["The Wailing Prison"] = [[wailingprison5_base]],
["The Wailing Prison"] = [[wailingprison6_base]],
["The Anchor Mooring"] = [[wailingprison7_base]],
["The Harborage"] = [[the_aldmiri_harborage_map_base]],
["The Harborage"] = [[the_daggerfall_harborage]],
["The Harborage"] = [[the_ebonheart_harborage_base]],
["Vision of the Companions"] = [[visionofthecompanions_base]],
["Foundry of Woe"] = [[foundryofwoe_base]],
["The Worm's Retreat"] = [[thewormsretreat_base]],
["Castle of Worms"] = [[castleoftheworm1_base]],
["Castle of Worms"] = [[castleoftheworm2_base]],
["Castle of Worms"] = [[castleoftheworm3_base]],
["Castle of Worms"] = [[castleoftheworm4_base]],
["Halls of Torment"] = [[hallsoftorment1_base]],
["Valley of Blades"] = [[valleyofblades1_base]],
["Ancestral Crypt"] = [[valleyofblades2_base]],
["Sancre Tor"] = [[sancretor1_base]],
["Sancre Tor"] = [[sancretor2_base]],
["Sancre Tor"] = [[sancretor3_base]],
["Sancre Tor"] = [[sancretor4_base]],
["Sancre Tor"] = [[sancretor6_base]],
["Sancre Tor"] = [[sancretor5_base]],
["Sancre Tor"] = [[sancretor7_base]],
["Sancre Tor"] = [[sancretor8_base]],
["Heart's Grief"] = [[heartsgrief1_base]],
["Heart's Grief"] = [[heartsgrief2_base]],
["Heart's Grief"] = [[heartsgrief1_base]],
["Coldored Rooms"] = [[coloredrooms_base]],
-- Fighter's Guild
["Buraniim"] = [[buraniim_base]],
["Dourstone Vault"] = [[dourstonevault_base]],
["Stonefang Cavern"] = [[stonefang_base]],
["Mzeneldt"] = [[mzendeldt_base]],
["Abagarlas"] = [[abagarlas_base]],
["The Earth Forge"] = [[theearthforge_base]],
["Ragnthar"] = [[ragnthar_base]],
["Halls of Submission"] = [[hallsofsubmission_base]],
-- Mages Guild
["Cheesemonger's Hollow"] = [[cheesemongershollow_base]],
["Shivering Isles"] = [[gladeofthedivineshivering_base]],
["Vuldngrav"] = [[gladeofthedivinevuldngrav_base]],
["Asakala"] = [[gladeofthedivineasakala_base]],
["Circus of Cheerful Slaughter"] = [[circusofcheerfulslaughter_base]],
["Chateau of the Ravenous Rodent"] = [[chateauravenousrodent_base]],
["Chateau Master Bedroom"] = [[chateaumasterbedroom_base]],
["Eyevea"] = [[eyevea_base]],
-- Craglorn
["Belkarth"] = [[belkarth_base]],
["Belkarth Outlaws Refuge"] = [[craglornoutlawrefuge_base]],
["Craglorn"] = [[craglorn_base]],
["Buried Sands"] = [[burriedsands_base]],
["Tombs of the Na-Totambu"] = [[cryptoftarishzizone_base]],
["Tombs of the Na-Totambu"] = [[cryptoftarishzi_base]],
["Tombs of the Na-Totambu"] = [[cryptoftarishzi2_base]],
["Haddock's Market"] = [[haddock_base]],
["Frost Monarch Lair"] = [[frostmonarchlair_base]],
["Storm Lair"] = [[stormlair_base]],
["Molavar"] = [[molavar_base]],
["Balamath"] = [[balamath_base]],
["Balamath Hall"] = [[balamathairmonarchcham_base]],
["Reinhold's Retreat"] = [[reinholdsretreatcave_base]],
["Dragonstar"] = [[craglorn_dragonstar_base]],
["Fearfangs Cavern"] = [[fearfang_base]],
["Sunken Lair"] = [[crgwamasucave_base]],
["Serpent's Nest"] = [[serpentsnest_base]],
["Ilthag's Undertow"] = [[ilthagsundertower_base]],
["Ilthag's Undertow"] = [[ilthagsundertower02_base]],
["Exarch's Stronghold"] = [[exarchsstronghold_base]],
["The Howling Sepulchers"] = [[howlingsepulchersoverland_base]],
["The Howling Sepulchers"] = [[howlingsepulcherscave_base]],
["The Howling Sepulchers"] = [[howlingsepulchersscrying_base]],
["Loth'Na Caverns"] = [[lothna_base]],
["Skyreach Temple"] = [[skyreachtemple_base]],
["Apex Stone Room"] = [[elinhirmagevision_base]],
["Rkundzelft"] = [[rkundzelft_base]],
["Hircine's Haunt"] = [[hircineshaunt_base]],
["Elinhir Sewerworks"] = [[elinhirsewerworks_base]],
["Mtharnaz"] = [[mtharnaz_base]],
["Ruins of Kardala"] = [[kardala_base]],
["Chiselshriek Mine"] = [[chiselshriek_base]],
["Rkhardahrk"] = [[rkhardahrk]],
["Zalgar's Den"] = [[thaliasretreat_base]],
-- Imperial City
["Western Elsweyr Gate"] = [[westelsweyrgate_base]],
["Eastern Elsweyr Gate"] = [[eastelsweyrgate_base]],
["Imperial Sewers Aldmeri Base"] = [[Imperialsewers_aldmeri1_base]],
["Imperial City"] = [[imperialcity_base]],
["Dragonfire Cathedral"] = [[imperial_dragonfire_cath_base]],
["Northern High Rock Gate"] = [[northhighrockgate_base]],
["Southern High Rock Gate"] = [[southhighrockgate_base]],
["Cyrodiil"] = [[ava_whole]],
["Imperial Sewers Daggerfall Base"] = [[Imperialsewer_daggerfall1_base]],
["Southern Morrowind Gate"] = [[southmorrowgate_base]],
["Northern Morrowind Gate"] = [[northmorrowgate_base]],
["Imperial Sewers Ebonheart Base"] = [[Imperialsewers_ebon1_base]],
-- Orsinium
["Wrothgar"] = [[wrothgar_base]],
["Nikolvara's Kennel"] = [[kennelrun_base]],
["Orsinium "] = [[orsinium_base]],
["Orsinium Outlaws Refuge"] = [[wrothgaroutlawrefuge_base]],
["Frost Break Fort"] = [[frostbreakfortint_map_base]],
["Ice Heart's Lair"] = [[iceheartslair_map_base]],
["Scarp Keep"] = [[scarpkeeplower_base]],
["Scarp Keep"] = [[scarpkeepupper_base]],
["Scarp Keep"] = [[orsiniumthroneroom_base]],
["Orsinium Temple"] = [[orsiniumtempleupper_base]],
["Orsinium Temple"] = [[orsiniumtemplelower_base]],
["Temple Rectory"] = [[rectory01_base]],
["Graystone Quarry Depths"] = [[graystonequarrytop_base]],
["Graystone Quarry Depths"] = [[graystonequarrybottom_base]],
["Honor's Rest Catacombs"] = [[honorsrestleft_base]],
["Honor's Rest Catacombs"] = [[honorsrestright_base]],
["Honor's Rest Catacombs"] = [[honorsrestorc_base]],
["Honor's Rest Catacombs"] = [[honorsrestdesert_base]],
["Halls of Honor"] = [[honorsrestfinalc_base]],
["Halls of Honor"] = [[honorsrestfinalv_base]],
["Bloody Knoll"] = [[bloodyknoll_base]],
["Coldperch Cavern"] = [[coldperchcavern_base]],
["Bonerock Cavern"] = [[bonerock_caverns_base]],
["Morkul"] = [[morkul_base]],
["Morkul Descent "] = [[morkuldescent_map_base]],
["Morkuldin"] = [[morkuldin_map_base]],
["Exile's Barrow"] = [[exilesBarrow_map_base]],
["Zthenganaz"] = [[Zthenganaz_base]],
["Fharun Prison"] = [[fharunprison_base]],
["Fharun Stronghold"] = [[fharunstronghold01_base]],
["Fharun Stronghold"] = [[fharunstronghold02_base]],
["Fharun Stronghold"] = [[fharunstronghold03b_base]],
["Sorrow"] = [[sorrowint01_base]],
["Sorrow"] = [[sorrowext_base]],
["Sorrow"] = [[sorrowint01_base]],
["Sorrow"] = [[sorrowint02_base]],
["Sorrow"] = [[sorrowint03_base]],
["Argent Mine"] = [[argentmine2_base]],
["Thukhozod's Sanctum"] = [[thukozods_base]],
["Watcher's Hold"] = [[watchershold_base]],
["Paragon's Remembrance"] = [[paragonsrememberance_base]],
["Chambers of Loyalty"] = [[chambersofloyalty_base]],
["Temple Library"] = [[pathtothemoo_library_base]],
["Path to the Moot"] = [[pathtothemoot_base]],
-- Thieves Guild
["Fulstrom Homestead"] = [[fulstromhomestead_base]],
["Fulstrom Catacombs"] = [[fulstromcatacombs_base]],
["Abah's Landing"] = [[abahslanding_base]],
["Thieves Den"] = [[safehouse_base]],
["Thieves Den"] = [[safehouse_base]],
["Maw of Lorkaj"] = [[Maw_of_Lorkaj_Base]],
["Sulima Mansion"] = [[abahslanding_sulima_base]],
["Sulima Mansion"] = [[sulimamansion_floor1]],
["Sulima Mansion"] = [[sulimamansion_floor1_hidden]],
["Sulima Mansion"] = [[sulimamansion_floor2]],
["Sulima Mansion"] = [[sulimamansion_floor2_hidden]],
["Hew's bane"] = [[hewsbane_base]],
["Bahraha's Gloom"] = [[bahrahasgloom_base]],
["Bahraha's Gloom"] = [[bahrahasgloom_secret1_base]],
["Bahraha's Gloom"] = [[bahrahasgloom_secret2_base]],
["Bahraha's Gloom"] = [[bahrahasgloom_secret3_base]],
["No Shira Citadel"] = [[hiradirgecitadeltg3_base]],
["No Shira Citadel"] = [[hiradirgecitadeltg3_s1_base]],
["No Shira Citadel"] = [[hiradirgecitadeltg6_base]],
["Vermont Mansion"] = [[abahslanding_velmont_base]],
["al-Danobia Tomb"] = [["aldanobia_base"]],
["al-Danobia Tomb"] = [[aldanobitombdungeon_base]],
["Shark's Teeth Grotto"] = [[sharktoothgrotto2_base]],
["Shark's Teeth Grotto"] = [[sharktoothgrotto1_base]],
["Hubalajad Palace"] = [[hubalajadpalace_base]],
["Hubalajad Palace"] = [[hubalajadpalaceint_01_h_base]],
["Hubalajad Palace"] = [[hubalajadpalaceint_02_h_base]],
["Hubalajad Palace"] = [[hubalajadpalaceint_02_base]],
["Hubalajad Palace"] = [[hubalajadpalaceint_base]],
-- Dark Brotherhood
["Anvil"] = [[anvilcity_base]],
["Anvil Outlaws Refuge"] = [[goldcoastrefuge_base]],
["Gold Coast"] = [[goldcoast_base]],
["Jarol's Estate"] = [[[varoestatecellar_base]],
["Jarol's Estate"] = [[[varoestatetunnels02_base]],
["Jarol's Estate Wine Cellar"] = [[varoestatetunnels_base]],
["Jarol's Estate Smuggling Tunnels"] = [[varoestatetunnels01_base]],
["Jarol's Estate Smuggling Tunnels"] = [[varoestatetunnels02_base]],
["Jarol's Estate Smuggling Tunnels"] = [[varoestatecaves02_base]],
["Hrota Cave"] = [[hrotacave_base]],
["Hrota Cave"] = [[hrotacave02_base]],
["Garlas Agea"] = [[garlasagea_base]],
["Dark Brotherhood Sanctuary"] = [[dbsanctuary_base]],
["Kvatch"] = [[kvatchcity_base]],
["At-Himah Family Estate"] = [[athimahcave01_base]],
["At-Himah Family Estate"] = [[athimahmanson01_base]],
["At-Himah Family Estate"] = [[athimahmanson03_base]],
["Jerall Mountains"] = [[db3jerallmountains_base]],
["Castle Anvil"] = [[castleanvil01_base]],
["Castle Kvatch"] = [[castlekvatch01_base]],
["Castle Kvatch"] = [[castlekvatch02_base]],
["Castle Kvatch"] = [[castlekvatch03_base]],
["Castle Kvatch"] = [[castlekvatch04_base]],
["Enclave of the Hourglass"] = [[orderenclave02_base]],
["Enclave of the Hourglass"] = [[orderenclave03_base]],
["Blackwood Borderlands"] = [[blackwoodsborderlands01_base]],
["Blackwood Borderlands"] = [[blackwoodsborderlands02_base]],
["Knightsgrave"] = [[knightsgrave01_base]],
["Knightsgrave"] = [[knightsgrave03_base]],
["Knightsgrave"] = [[knightsgrave04_base]],
["Cathedral of Akatosh"] = [[cathedralofakatosh_base]],
-- Vvardenfell
["Cold-Blood Cavern"] = [[coldbloodcavernmain]],
["Dyzera's Realm"] = [[DyzeraRealm]],
["Vvardenfell"] = [[vvardenfell_base]],
["Andrano Ancestral Tomb"] = [[andrano_base]],
["Vivec City"] = [[viviccity_base]],
["Vivec City Outlaws Refuge"] = [[vvardenfelloutlawrefuge_base]],
["Palace Recieving Room"] = [[vivecthroneroom01_base]],
["Library of Vivec"] = [[vivechow01a_base]],
["Archcanon's Office"] = [[vivechow02_base]],
["Hall of Justice"] = [[vivechoj01a_base]],
["Sadrith Mora"] = [[sadrithmora_base]],
["Barilzar's Tower"] = [[odirniran_base]],
["Zaintiraris"] = [[zaintiraris_base]],
["Pinsun"] = [[pinsun_base]],
["Pulk"] = [[pulkupper_base]],
["Pulk"] = [[pulklower_base]],
["Zalkin-Sul Egg Mine"] = [[zalkinsul01_base]],
["Mzanchend"] = [[zalkinsul02_base ]],
["Mzanchend"] = [[zalkinsul03_base]],
["Vassamsi Mine"] = [[vassamsigrotto_base]],
["Tusenend"] = [[tusenend_base]],
["Dreudurai Glass Mine"] = [[molagmarglassmine_base]],
["Bal Ur"] = [[balur_base]],
["Zainsipilu"] = [[zainsipilu_base]],
["Balmora"] = [[balmora_base]],
["Firemoth Island"] = [[firemothisland_base]],
["Shulk Ore Mine"] = [[shulk_base]],
["Vassir-Didanat Mine"] = [[vassirdidanat01_base]],
["Vassir-Didanat Mine"] = [[vassirdidanat02_base]],
["Ashurnibibi"] = [[ashurnibibi_base]],
["Mallapi Cave"] = [[mallapi_base]],
["Kudanat Mine"] = [[kudanat_base]],
["Redoran Garrison"] = [[redorancouncilhall01_base]],
["Redoran Garrison"] = [[redorancouncilhall02_base]],
["Redoran Garrison"] = [[redorancouncilhall03_base]],
["Ramimilk"] = [[ramimilk_base]],
["Ashimanu Cave"] = [[ashimanu_base]],
["Ashimanu Cave"] = [[ashimanu01_base]],
["Hleran Ancestral Tomb"] = [[hlaren_base]],
["Gnisis Egg Mine"] = [[gnisiseggmine_base]],
["Ashalmawia"] = [[ashalmawia_base]],
["Ashalmawia"] = [[ashalmawia02_base]],
["Ashalmawia"] = [[ashalmawia03_base]],
["Prison of Xykenaz"] = [[prisonofxykenaz_base]],
["Cavern of the Incarnate"] = [[cavernoftheincarnate_base]],
["Skar"] = [[skar_base]],
["Galom Daeus"] = [[galomdaeus_base]],
["Galom Daeus"] = [[galomdaeusend_base]],
["Nchuleft"] = [[nchuleft_base]],
["Nchuleft Depths"] = [[nchuleftdepths_base]],
["Arkngthunch-Sturdumz"] = [[arkngthunch_base]],
["Kaushtarari"] = [[kaushtarari_base]],
["Kaushtarari"] = [[kaushtarari02_base]],
["Lord Vivec's Chambers"] = [[vivecthroneroom02_base]],
["Seht's Vault"] = [[clockwork01_base]],
["Engineering Junction"] = [[clockwork03_base]],
["Dockworks"] = [[clockwork05_base]],
["The Divinity Atelier"] = [[clockwork04_base]],
["Maintence Junction"] = [[clockwork02_base]],
["Engineering Access"] = [[clockwork06_base]],
["Atelier Courtyard"] = [[clockwork07_base]],
["Dreloth Ancestral Tomb"] = [[dreloth_base]],
["Veloth Ancestral Tomb"] = [[veloth01_base]],
["Veloth Ancestral Tomb"] = [[veloth02_base]],
["Veloth Ancestral Tomb"] = [[veloth03_base]],
["Matus-Akin Egg Mine"] = [[matusakin_base]],
["Inanius Egg Mine"] = [[inanius_base]],
["Khartag Point"] = [[khartagpoint_base]],
["Bal Fell"] = [[balfel_base]],
-- Clockwork City
["Dranil Kir Island"] = [[dranilkirisland_base]],
["Clockwork City Vaults"] = [[ccq1_map1_base]],
["Clockwork City Vaults"] = [[ccq1_map2_base]],
["Clockwork City Vaults"] = [[ccq1_map3_base]],
["Clockwork City"] = [[clockwork_base]],
["Brass Fortress"] = [[brassfortress_base]],
["Clockwork Basilica"] = [[basilica_01_base]],
["Clockwork Basilica"] = [[basilica_02_base]],
["Clockwork Basilica"] = [[basilica_03_base]],
["Serviflume"] = [[ccq2serviflume_base]],
["Administration Nexus"] = [[ccq2adminnexus01_base]],
["Administration Nexus"] = [[ccq2adminnexus02_base]],
["Mechanical Fundament"] = [[mechanicalfundamentlow01_base]],
["Mechanical Fundament"] = [[mechanicalfundamentup01_base]],
["Mechanical Fundament"] = [[mechanicalfundamentup02_base]],
["Mechanical Fundament"] = [[mechanicalfundamentlow02_base]],
["Mechanical Fundament"] = [[ccunderground_base]],
["Mechanical Fundament"] = [[ccunderground02_bas]],
["Ventral Terminus"] = [[ventralterminus01_base]],
["Ventral Terminus"] = [[ventralterminus02_base]],
["Incarnatorium"] = [[ccq5_FL1_base]],
["Incarnatorium"] = [[CCQ5_FL2_base]],
["The Shadow Cleft"] = [[shadowcleft_base]],
["Mnemonic Planisphere"] = [[planisphere_1st_sphere_base]],
["Mnemonic Planisphere"] = [[planisphere_map1_base]],
["Mnemonic Planisphere"] = [[planisphere_map2_base]],
["Mnemonic Planisphere"] = [[planisphere_map3_base]],
["Mnemonic Planisphere"] = [[planisphere_3rd_sphere_base]],
["Slag Town Outlaws Refuge"] = [[clockworkoutlawsrefuge_base]],
["Evergloom"] = [[evergloam_base]],
["Evergloom"] = [[sq6evergloam_base]],
["Cogitum Centralis"] = [[ccq7_map1_base]],
["Cogitum Centralis"] = [[ccq7_map2_base]],
["Cogitum Centralis"] = [[ccq7_map3_base]],
["Cogitum Centralis"] = [[ccq7_map4_base]],
["Cogitum Centralis"] = [[ccq7_map5_base]],
["Everwound Wellspring"] = [[oasis_map1_base]],
["Everwound Wellspring"] = [[oasis_map2_base]],
["Everwound Wellspring"] = [[oasis_map3_base]],
["Halls of Regulation"] = [[hallsofregulation_base]],
["Halls of Regulation"] = [[hallsofregulation_2_base]],
-- SUMMERSET
["Shimmerene"] = [[shimmerene_base]],
["Summerset"] = [[summerset_base]],
["Monastery of Serene Harmony"] = [[monasteryoshfloor01_base]],
["Monastery of Serene Harmony"] = [[monasteryoshfloor02_base]],
["Monastery of Serene Harmony"] = [[monasteryoshfloor03_base]],
["Shimmerene Waterworks"] = [[ShimmereneWaterworks01_base]],
["Archon's Grove"] = [[archonsgrove_base]],
["Artaeum"] = [[artaeum_base]],
["The Dreaming Cave"] = [[dreamingcave01_base]],
["Ceporah Tower"] = [[dreamingcave02_base]],
["Ceporah Tower"] = [[dreamingcave03_base]],
["Red Temple Catacombs"] = [[russafeldredtemple01_base]],
["Red Temple Catacombs"] = [[russafeldredtemple02_base]],
["Rellenthil Sinkhole"] = [[sinkhole_base]],
["Cey-Tarn Keep"] = [[ceytarn_dungeon01_base]],
["Cey-Tarn Keep"] = [[ceytarn_dungeon02_base]],
["Cey-Tarn Keep"] = [[ceytarn_dungeon03_base]],
["The Vaults of Heinarwe"] = [[ceytarncaveExt01_base]],
["The Vaults of Heinarwe"] = [[ceytarncaveInt01_base]],
["The Vaults of Heinarwe"] = [[ceytarncaveInt02b_base]],
["The Vaults of Heinarwe"] = [[ceytarncaveInt02_base]],
["The Vaults of Heinarwe"] = [[ceytarncaveInt03_base]],
["Wastern Coraldale"] = [[wastencoraldale_base]],
["Alinor"] = [[alinor_base]],
["Alinor Royal Palace"] = [[alinorroyalpalace1_base]],
["Tor-Hame-Khard"] = [[torhamekhard_01_base]],
["Tor-Hame-Khard"] = [[torhamekhard_02_base]],
["Alinor Outlaws Refuge"] = [[alinoroutlawsrefuge01_base]],
["Alinor Outlaws Refuge"] = [[alinoroutlawsrefuge02_base]],
["College of Psijics Ruins"] = [[collegeofpsijicsruins_base]],
["College of Psijics Ruins"] = [[collegeofpsijicsruins_btm_base]],
["Psijic Relic Vaults"] = [[psijicrelicvaults01_base]],
["Psijic Relic Vaults"] = [[psijicrelicvaults02_base]],
["K'Tora's Mindscape"] = [[sq3sloadmindscape_base]],
["Eldbur Ruins"] = [[Eldbursanctuary01_base]],
["Eldbur Ruins"] = [[Eldbursanctuary02_base]],
["Eldbur Ruins"] = [[Eldbursanctuary03_base]],
["Cainar's Mind Trap"] = [[Eldbursanctuary04_base]],
["Miriya's Mind Trap"] = [[Eldbursanctuary05_base]],
["Oriandra's Mind Trap"] = [[Eldbursanctuary06_base]],
["Direnni Acropolis"] = [[karndar_01_base]],
["Direnni Acropolis"] = [[karndar_02_base]],
["Direnni Acropolis"] = [[karndar_03_base]],
["Direnni Acropolis"] = [[karndar_03b_base]],
["Direnni Acropolis"] = [[karndar_04_base]],
["Direnni Acropolis"] = [[karndar_05_base]],
["Direnni Acropolis"] = [[karndar_06_base]],
["Illumination Academy Stacks"] = [[illuminationacademy_01_base]],
["Illumination Academy Stacks"] = [[illuminationacademy_02_base]],
["Illumination Academy Stacks"] = [[illuminationacademy_03_base]],
["Illumination Academy Stacks"] = [[illuminationacademy_04_base]],
["Sea Keep"] = [[seakeep_01_base]],
["Sea Keep"] = [[seakeep_02_base]],
["Sea Keep"] = [[seakeep_03_base]],
["Lillandril"] = [[Lillandril]],
["College of Sapiarchs Labyrinth"] = [[SQ4Sapiarch01_base]],
["College of Sapiarchs Labyrinth"] = [[SQ4Sapiarch02_base]],
["College of Sapiarchs Labyrinth"] = [[SQ4Sapiarch03_base]],
["Saltbreeze Cave"] = [[lillandrilcave_base]],
["King's Haven Pass"] = [[kingshavenext_base]],
["King's Haven Pass"] = [[kingshavenint1_base]],
["Eton Nir Grotto"] = [[etonnir_01_base]],
["Eton Nir Grotto"] = [[etonnir_02_base]],
["The Spiral Skein"] = [[mephalasrealm_base]],
["The Spiral Skein"] = [[sq5mephalaint01_base]],
["The Spiral Skein"] = [[sq5mephalaext01_base]],
["The Spiral Skein"] = [[sq5mephalaint01b_base]],
["The Spiral Skein"] = [[sq5mephalaint02_base]],
["The Spiral Skein"] = [[sq5mephalaint02b_base]],
["The Spiral Skein"] = [[sq5mephalaint03_base]],
["Ebon Sanctum"] = [[ebonStadmont_base]],
["Ebon Sanctum"] = [[ebonStadmont02_base]],
["Ebon Sanctum"] = [[ebonStadmont03_base]],
["Traitor's Vault"] = [[TraitorsVault01_base]],
["Traitor's Vault"] = [[TraitorsVault02_base]],
["Traitor's Vault"] = [[TraitorsVault03_base]],
["Traitor's Vault"] = [[TraitorsVault04_base]],
["Corgrad Wastes"] = [[corgradwastehigher_base]],
["Corgrad Wastes"] = [[corgradwastehigher2_base]],
["Corgrad Wastes"] = [[corgradwasteslower_base]],
["Cathedral of Webbs"] = [[sq7courtofbedlamruins_base]],
["Crystal Tower"] = [[crystaltower_approach_base]],
["Crystal Tower"] = [[crystaltower_entryway_base]],
["Crystal Tower"] = [[crystaltower_entryway02_base]],
["Crystal Tower"] = [[crystaltower_unfolding_base]],
["Crystal Tower"] = [[crystaltower_trophy01_base]],
["Crystal Tower"] = [[crystaltower_trophy02_base]],
["Crystal Tower"] = [[crystaltower_library_base]],
["Crystal Tower"] = [[crystaltower_mausoleum_base]],
["Crystal Tower"] = [[crystaltower_barrier_base]],
["Crystal Tower"] = [[crystaltower_top_base]],
["Crystal Tower"] = [[crystaltower_top02_base]],
-- MURKMIRE
["The Sunless Hollow"] = [[uprootedhideout_ad1_base]],
["The Sunless Hollow"] = [[uprootedhideout_ad2_base]],
["The Sunless Hollow"] = [[uprootedhideout_dc1_base]],
["The Sunless Hollow"] = [[uprootedhideout_dc2_base]],
["The Sunless Hollow"] = [[epuprootedhideout_ep1_base]],
["The Sunless Hollow"] = [[epuprootedhideout_ep2_base]],
["Norg-Tzel"] = [[swampisland_ext_base]],
["Norg-Tzel Xanmeer"] = [[swampisland_base]],
["Lilmoth"] = [[lilmothcity_base]],
["Murkmire"] = [[murkmire_base]],
["Ixtaxh Xanmeer"] = [[sunkenxanmeer01_base]],
["Ixtaxh Xanmeer"] = [[sunkenxanmeer02_base]],
["Bright-Throat Village"] = [[brightthroatvillage_base]],
["Blight Bog Sump"] = [[blightedbogcavern_base]],
["Wither-Vault"] = [[withervault_base]],
["Dead-Water Village"] = [[deadwatervillage_base]],
["Tsofeer Cavern"] = [[UI_Map_tsofeercavern01]],
["Tomb of Many Spears"] = [[Tombofspears_base]],
["Teeth of Sithis"] = [[teethofsithis01_base]],
["Teeth of Sithis"] = [[teethofsithis02a_base]],
["Teeth of Sithis"] = [[teethofsithis02b_base]],
["Swallowed Grove"] = [[UI_Map_swallowedgrove_base]],
["Singing Grotto"] = [[mrkdwcave_base]],
["The Dreaming Nest"] = [[themists01_base]],
["The Dreaming Nest"] = [[themists02_base]],
["The Dreaming Nest"] = [[themists03_base]],
["The Dreaming Nest"] = [[themists04_base]],
["Xul-Thuxis"] = [[DeepMire01_base]],
["Xul-Thuxis"] = [[DeepMire02_base]],
["Xul-Thuxis"] = [[DeepMire03_base]],
["Root-Whisper Village"] = [[rootwhisper_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka01_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka02_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka03_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka04_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka05_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka06_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka07_base]],
["Vakka-Box Xanmeer"] = [[UI_Map_Xal-Vakka09_base]],
["Deep-Root"] = [[UI_Map_DeepRoot_base01]],
["remnantofargon_base"] = [[remnantofargon_base]],
-- NORTHERN ELSWEYR
["New-Moons Chamber"] = [["newmoonschamber_base"]],
["Dark-Moons Chamber"] = [["darkmoonschamber_base"]],
["Full-Moons Chamnber"] = [["fullmoonschamber_base"]],
["Halls of Colossus"] = [["els_teaser_hoc_ext01"]],
["Halls of Colossus"] = [["els_teaser_hoc_int01"]],
["Halls of Colossus"] = [["els_teaser_hoc_int02"]],
["Rimmen"] = [["rimmen_base"]],
["Rimmen Palace Recusses"] = [["rimmensewer_base"]],
["Rimmen Palace Crypts"] = [["rimmencrypts_base"]],
["Rimmen Palace"] = [["rimmenpalaceinterior_base"]],
["Rimmen Palace Courtyard"] = [["rimmenpalacecourtyard_base"]],
["Northern Elsweyr"] = [["elsweyr_base"]],
["Riverhold"] = [["riverholdcity_base"]],
["Riverhold"] = [["riverholdinstance_base"]],
["Tomb of the Serpents"] = [["tombofserpents_base"]],
["Smuggler's Hideout"] = [["smugglershideout_base"]],
["Abode of Ignominy"] = [["abodeofignominy_base"]],
["Predator Mesa"] = [["predatorrise_base"]],
["The Stitches"] = [["stitches_base"]],
["Sleepy Senche Mine"] = [["mulaamnirslair_base"]],
["Cicatrice Caverns"] = [["cicatriceoasis_base"]],
["Cicatrice Caverns"] = [["cicatriceoasisupperfloor_base"]],
["Cicatrice Caverns"] = [["cicatriceoasisbossroom_base"]],
["Darkpool Mine"] = [["thescab_base"]],
["Merryvale Sugar Farm Caves"] = [["merrivillesugarfarm_base"]],
["Desert Wind Caverns"] = [["DesertWind_Base"]],
["Desert Wind Caverns"] = [["DesertWind2A_Base"]],
["Desert Wind Caverns"] = [["DesertWind2_Base"]],
["Desert Wind Caverns"] = [["DesertWind2_2A_Base"]],
["Hidden Moon Crypts"] = [["ashencombs1_base"]],
["Arum-Khal's Realm"] = [["ashencombs2_base"]],