-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathZoneNames.ini
More file actions
1723 lines (1723 loc) · 29.4 KB
/
ZoneNames.ini
File metadata and controls
1723 lines (1723 loc) · 29.4 KB
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
[1]
Name:=South Qeynos
ShortName=qeynos
[2]
Name:=North Qeynos
ShortName=qeynos2
[3]
Name:=Surefall Glade
ShortName=qrg
[4]
Name:=Qeynos Hills
ShortName=qeytoqrg
[6]
Name:=High Keep
ShortName=highkeep
[8]
Name:=North Freeport
ShortName=freportn
[9]
Name:=West Freeport
ShortName=freportw
[10]
Name:=East Freeport
ShortName=freporte
[11]
Name:=Clan Runnyeye
ShortName=runnyeye
[12]
Name:=West Karana
ShortName=qey2hh1
[13]
Name:=North Karana
ShortName=northkarana
[14]
Name:=South Karana
ShortName=southkarana
[15]
Name:=East Karana
ShortName=eastkarana
[16]
Name:=Gorge of King Xorbb
ShortName=beholder
[17]
Name:=BlackBurrow
ShortName=blackburrow
[18]
Name:=Infected Paw
ShortName=paw
[19]
Name:=Rivervale
ShortName=rivervale
[20]
Name:=Kithicor Forest
ShortName=kithicor
[21]
Name:=West Commonlands
ShortName=commons
[22]
Name:=East Commonlands
ShortName=ecommons
[23]
Name:=Erudin Palace
ShortName=erudnint
[24]
Name:=Erudin
ShortName=erudnext
[25]
Name:=Nektulos Forest
ShortName=nektulos
[26]
Name:=Sunset Home
ShortName=cshome
[27]
Name:=Lavastorm Mountains
ShortName=lavastorm
[28]
Name:=Nektropos
ShortName=nektropos
[29]
Name:=Halas
ShortName=halas
[30]
Name:=Everfrost Peaks
ShortName=everfrost
[31]
Name:=Solusek's Eye
ShortName=soldunga
[32]
Name:=Nagafen's Lair
ShortName=soldungb
[33]
Name:=Misty Thicket
ShortName=misty
[34]
Name:=North Ro
ShortName=nro
[35]
Name:=South Ro
ShortName=sro
[36]
Name:=Befallen
ShortName=befallen
[37]
Name:=Oasis of Marr
ShortName=oasis
[38]
Name:=Toxxulia Forest
ShortName=tox
[39]
Name:=The Ruins of Old Paineel
ShortName=hole
[40]
Name:=Neriak - Foreign Quarter
ShortName=neriaka
[41]
Name:=Neriak - Commons
ShortName=neriakb
[42]
Name:=Neriak - Third Gate
ShortName=neriakc
[43]
Name:=Neriak - Fourth Gate
ShortName=neriakd
[44]
Name:=Najena
ShortName=najena
[45]
Name:=Qeynos Catacombs
ShortName=qcat
[46]
Name:=Innothule Swamp
ShortName=innothule
[47]
Name:=The Feerrott
ShortName=feerrott
[48]
Name:=Cazic-Thule
ShortName=cazicthule
[49]
Name:=Oggok
ShortName=oggok
[50]
Name:=Mountains of Rathe
ShortName=rathemtn
[51]
Name:=Lake Rathetear
ShortName=lakerathe
[52]
Name:=Grobb
ShortName=grobb
[53]
Name:=Aviak Village
ShortName=aviak
[54]
Name:=Greater Faydark
ShortName=gfaydark
[55]
Name:=Ak'Anon
ShortName=akanon
[56]
Name:=Steamfont Mountains
ShortName=steamfont
[57]
Name:=Lesser Faydark
ShortName=lfaydark
[58]
Name:=Clan Crushbone
ShortName=crushbone
[59]
Name:=Castle Mistmoore
ShortName=mistmoore
[60]
Name:=Kaladim
ShortName=kaladima
[61]
Name:=Felwithe
ShortName=felwithea
[62]
Name:=Felwithe
ShortName=felwitheb
[63]
Name:=Estate of Unrest
ShortName=unrest
[64]
Name:=Kedge Keep
ShortName=kedge
[65]
Name:=Upper Guk
ShortName=guktop
[66]
Name:=Lower Guk
ShortName=gukbottom
[67]
Name:=Kaladim
ShortName=kaladimb
[68]
Name:=Butcherblock Mountains
ShortName=butcher
[69]
Name:=Ocean of Tears
ShortName=oot
[70]
Name:=Dagnor's Cauldron
ShortName=cauldron
[71]
Name:=Plane of Sky
ShortName=airplane
[72]
Name:=Plane of Fear
ShortName=fearplane
[73]
Name:=Permafrost Keep
ShortName=permafrost
[74]
Name:=Kerra Isle
ShortName=kerraridge
[75]
Name:=Paineel
ShortName=paineel
[76]
Name:=The Plane of Hate
ShortName=hateplane
[77]
Name:=The Arena
ShortName=arena
[78]
Name:=The Field of Bone
ShortName=fieldofbone
[79]
Name:=Warsliks Woods
ShortName=warslikswood
[80]
Name:=Temple of Solusek Ro
ShortName=soltemple
[81]
Name:=Temple of Droga
ShortName=droga
[82]
Name:=West Cabilis
ShortName=cabwest
[83]
Name:=Swamp of No Hope
ShortName=swampofnohope
[84]
Name:=Firiona Vie
ShortName=firiona
[85]
Name:=Lake of Ill Omen
ShortName=lakeofillomen
[86]
Name:=Dreadlands
ShortName=dreadlands
[87]
Name:=Burning Woods
ShortName=burningwood
[88]
Name:=Kaesora
ShortName=kaesora
[89]
Name:=Old Sebilis
ShortName=sebilis
[90]
Name:=City of Mist
ShortName=citymist
[91]
Name:=Skyfire Mountains
ShortName=skyfire
[92]
Name:=Frontier Mountains
ShortName=frontiermtns
[93]
Name:=The Overthere
ShortName=overthere
[94]
Name:=The Emerald Jungle
ShortName=emeraldjungle
[95]
Name:=Trakanon's Teeth
ShortName=trakanon
[96]
Name:=Timorous Deep
ShortName=timorous
[97]
Name:=Kurn's Tower
ShortName=kurn
[98]
Name:=Erud's Crossing
ShortName=erudsxing
[100]
Name:=Stonebrunt Mountains
ShortName=stonebrunt
[101]
Name:=The Warrens
ShortName=warrens
[102]
Name:=Karnor's Castle
ShortName=karnor
[103]
Name:=Chardok
ShortName=chardok
[104]
Name:=Dalnir
ShortName=dalnir
[105]
Name:=Howling Stones
ShortName=charasis
[106]
Name:=East Cabilis
ShortName=cabeast
[107]
Name:=Mines of Nurga
ShortName=nurga
[108]
Name:=Veeshan's Peak
ShortName=veeshan
[109]
Name:=Veksar
ShortName=veksar
[110]
Name:=Iceclad Ocean
ShortName=iceclad
[111]
Name:=Tower of Frozen Shadow
ShortName=frozenshadow
[112]
Name:=Velketor's Labyrinth
ShortName=velketor
[113]
Name:=Kael Drakkel
ShortName=kael
[114]
Name:=Skyshrine
ShortName=skyshrine
[115]
Name:=Thurgadin
ShortName=thurgadina
[116]
Name:=Eastern Wastes
ShortName=eastwastes
[117]
Name:=Cobalt Scar
ShortName=cobaltscar
[118]
Name:=Great Divide
ShortName=greatdivide
[119]
Name:=The Wakening Land
ShortName=wakening
[120]
Name:=Western Wastes
ShortName=westwastes
[121]
Name:=Crystal Caverns
ShortName=crystal
[123]
Name:=Dragon Necropolis
ShortName=necropolis
[124]
Name:=Temple of Veeshan
ShortName=templeveeshan
[125]
Name:=Siren's Grotto
ShortName=sirens
[126]
Name:=Plane of Mischief
ShortName=mischiefplane
[127]
Name:=Plane of Growth
ShortName=growthplane
[128]
Name:=Sleeper's Tomb
ShortName=sleeper
[129]
Name:=Icewell Keep
ShortName=thurgadinb
[130]
Name:=Marauder's Mire
ShortName=erudsxing2
[150]
Name:=Shadow Haven
ShortName=shadowhaven
[151]
Name:=The Bazaar
ShortName=bazaar
[152]
Name:=The Nexus
ShortName=nexus
[153]
Name:=Echo Caverns
ShortName=echo
[154]
Name:=Acrylia Caverns
ShortName=acrylia
[155]
Name:=Shar Vahl
ShortName=sharvahl
[156]
Name:=Paludal Caverns
ShortName=paludal
[157]
Name:=Fungus Grove
ShortName=fungusgrove
[158]
Name:=Vex Thal
ShortName=vexthal
[159]
Name:=Sanctus Seru
ShortName=sseru
[160]
Name:=Katta Castellum
ShortName=katta
[161]
Name:=Netherbian Lair
ShortName=netherbian
[162]
Name:=Ssraeshza Temple
ShortName=ssratemple
[163]
Name:=Grieg's End
ShortName=griegsend
[164]
Name:=The Deep
ShortName=thedeep
[165]
Name:=Shadeweaver's Thicket
ShortName=shadeweaver
[166]
Name:=Hollowshade Moor
ShortName=hollowshade
[167]
Name:=Grimling Forest
ShortName=grimling
[168]
Name:=Marus Seru
ShortName=mseru
[169]
Name:=Mons Letalis
ShortName=letalis
[170]
Name:=The Twilight Sea
ShortName=twilight
[171]
Name:=The Grey
ShortName=thegrey
[172]
Name:=The Tenebrous Mountains
ShortName=tenebrous
[173]
Name:=The Maiden's Eye
ShortName=maiden
[174]
Name:=Dawnshroud Peaks
ShortName=dawnshroud
[175]
Name:=The Scarlet Desert
ShortName=scarlet
[176]
Name:=The Umbral Plains
ShortName=umbral
[179]
Name:=Akheva Ruins
ShortName=akheva
[180]
Name:=The Arena
ShortName=arena2
[181]
Name:=The Jaggedpine Forest
ShortName=jaggedpine
[182]
Name:=Nedaria's Landing
ShortName=nedaria
[183]
Name:=Tutorial Zone
ShortName=tutorial
[184]
Name:=Loading
ShortName=load
[185]
Name:=Loading
ShortName=load2
[186]
Name:=The Plane of Hate
ShortName=hateplaneb
[187]
Name:=Shadowrest
ShortName=shadowrest
[188]
Name:=The Mines of Gloomingdeep
ShortName=tutoriala
[189]
Name:=The Mines of Gloomingdeep
ShortName=tutorialb
[190]
Name:=Loading
ShortName=clz
[200]
Name:=Ruins of Lxanvom
ShortName=codecay
[201]
Name:=Plane of Justice
ShortName=pojustice
[202]
Name:=Plane of Knowledge
ShortName=poknowledge
[203]
Name:=Plane of Tranquility
ShortName=potranquility
[204]
Name:=Plane of Nightmare
ShortName=ponightmare
[205]
Name:=Plane of Disease
ShortName=podisease
[206]
Name:=Plane of Innovation
ShortName=poinnovation
[207]
Name:=Plane of Torment
ShortName=potorment
[208]
Name:=Plane of Valor
ShortName=povalor
[209]
Name:=Torden, The Bastion of Thunder
ShortName=bothunder
[210]
Name:=Plane of Storms
ShortName=postorms
[211]
Name:=Halls of Honor
ShortName=hohonora
[212]
Name:=Solusek Ro's Tower
ShortName=solrotower
[213]
Name:=Plane of War
ShortName=powar
[214]
Name:=Drunder, Fortress of Zek
ShortName=potactics
[215]
Name:=Eryslai, the Kingdom of Wind
ShortName=poair
[216]
Name:=Reef of Coirnav
ShortName=powater
[217]
Name:=Doomfire, The Burning Lands
ShortName=pofire
[218]
Name:=Vegarlson, The Earthen Badlands
ShortName=poeartha
[219]
Name:=Plane of Time
ShortName=potimea
[220]
Name:=Temple of Marr
ShortName=hohonorb
[221]
Name:=Lair of Terris Thule
ShortName=nightmareb
[222]
Name:=Stronghold of the Twelve
ShortName=poearthb
[223]
Name:=Plane of Time
ShortName=potimeb
[224]
Name:=Gulf of Gunthak
ShortName=gunthak
[225]
Name:=Dulak's Harbor
ShortName=dulak
[226]
Name:=Torgiran Mines
ShortName=torgiran
[227]
Name:=Crypt of Nadox
ShortName=nadox
[228]
Name:=Hate's Fury, The Scorned Maiden
ShortName=hatesfury
[229]
Name:=The Cauldron of Lost Souls
ShortName=guka
[230]
Name:=The Bloodied Quarries
ShortName=ruja
[231]
Name:=The Sunken Library
ShortName=taka
[232]
Name:=The Silent Gallery
ShortName=mira
[233]
Name:=The Forlorn Caverns
ShortName=mmca
[234]
Name:=The Drowning Crypt
ShortName=gukb
[235]
Name:=The Halls of War
ShortName=rujb
[236]
Name:=The Shifting Tower
ShortName=takb
[237]
Name:=The Maw of the Menagerie
ShortName=mirb
[238]
Name:=The Dreary Grotto
ShortName=mmcb
[239]
Name:=The Ancient Aqueducts
ShortName=gukc
[240]
Name:=The Wind Bridges
ShortName=rujc
[241]
Name:=The Fading Temple
ShortName=takc
[242]
Name:=The Spider Den
ShortName=mirc
[243]
Name:=The Asylum of Invoked Stone
ShortName=mmcc
[244]
Name:=The Mushroom Grove
ShortName=gukd
[245]
Name:=The Gladiator Pits
ShortName=rujd
[246]
Name:=The Royal Observatory
ShortName=takd
[247]
Name:=The Hushed Banquet
ShortName=mird
[248]
Name:=The Chambers of Eternal Affliction
ShortName=mmcd
[249]
Name:=The Foreboding Prison
ShortName=guke
[250]
Name:=The Drudge Hollows
ShortName=ruje
[251]
Name:=The River of Recollection
ShortName=take
[252]
Name:=The Frosted Halls
ShortName=mire
[253]
Name:=The Sepulcher of the Damned
ShortName=mmce
[254]
Name:=The Chapel of the Witnesses
ShortName=gukf
[255]
Name:=The Fortified Lair of the Taskmasters
ShortName=rujf
[256]
Name:=The Sandfall Corridors
ShortName=takf
[257]
Name:=The Forgotten Wastes
ShortName=mirf
[258]
Name:=The Ritualistic Summoning Grounds
ShortName=mmcf
[259]
Name:=The Root Garden
ShortName=gukg
[260]
Name:=The Hidden Vale
ShortName=rujg
[261]
Name:=The Balancing Chamber
ShortName=takg
[262]
Name:=The Heart of the Menagerie
ShortName=mirg
[263]
Name:=The Cesspits of Putrescence
ShortName=mmcg
[264]
Name:=The Accursed Sanctuary
ShortName=gukh
[265]
Name:=The Blazing Forge
ShortName=rujh
[266]
Name:=The Sweeping Tides
ShortName=takh
[267]
Name:=The Morbid Laboratory
ShortName=mirh
[268]
Name:=The Aisles of Blood
ShortName=mmch
[269]
Name:=The Arena of Chance
ShortName=ruji
[270]
Name:=The Antiquated Palace
ShortName=taki
[271]
Name:=The Theater of Imprisoned Horrors
ShortName=miri
[272]
Name:=The Halls of Sanguinary Rites
ShortName=mmci
[273]
Name:=The Barracks of War
ShortName=rujj
[274]
Name:=The Prismatic Corridors
ShortName=takj
[275]
Name:=The Grand Library
ShortName=mirj
[276]
Name:=The Infernal Sanctuary
ShortName=mmcj
[277]
Name:=The Halls of Betrayal
ShortName=chardokb
[278]
Name:=The Caverns of Exile
ShortName=soldungc
[279]
Name:=Abysmal Sea
ShortName=abysmal
[280]
Name:=Natimbi, The Broken Shores
ShortName=natimbi
[281]
Name:=Qinimi, Court of Nihilia
ShortName=qinimi
[282]
Name:=Riwwi, Coliseum of Games
ShortName=riwwi
[283]
Name:=Barindu, Hanging Gardens
ShortName=barindu
[284]
Name:=Ferubi, Forgotten Temple of Taelosia
ShortName=ferubi
[285]
Name:=Sewers of Nihilia, Pool of Sludge
ShortName=snpool
[286]
Name:=Sewers of Nihilia, Lair of Trapped Ones
ShortName=snlair
[287]
Name:=Sewers of Nihilia, Purifying Plant
ShortName=snplant
[288]
Name:=Sewers of Nihilia, the Crematory
ShortName=sncrematory
[289]
Name:=Tipt, Treacherous Crags
ShortName=tipt
[290]
Name:=Vxed, The Crumbling Caverns
ShortName=vxed
[291]
Name:=Yxtta, Pulpit of Exiles
ShortName=yxtta
[292]
Name:=Uqua, The Ocean God Chantry
ShortName=uqua
[293]
Name:=Kod'Taz, Broken Trial Grounds
ShortName=kodtaz
[294]
Name:=Ikkinz, Chambers of Destruction
ShortName=ikkinz
[295]
Name:=Qvic, Prayer Grounds of Calling
ShortName=qvic
[296]
Name:=Inktu`Ta, The Unmasked Chapel
ShortName=inktuta
[297]
Name:=Txevu, Lair of the Elite
ShortName=txevu
[298]
Name:=Tacvi, Seat of the Slaver
ShortName=tacvi
[299]
Name:=Qvic, the Hidden Vault
ShortName=qvicb
[300]
Name:=Wall of Slaughter
ShortName=wallofslaughter
[301]
Name:=The Bloodfields
ShortName=bloodfields
[302]
Name:=Dranik's Scar
ShortName=draniksscar
[303]
Name:=Nobles' Causeway
ShortName=causeway
[304]
Name:=Muramite Proving Grounds
ShortName=chambersa
[305]
Name:=Muramite Proving Grounds
ShortName=chambersb
[306]
Name:=Muramite Proving Grounds
ShortName=chambersc
[307]
Name:=Muramite Proving Grounds
ShortName=chambersd
[308]
Name:=Muramite Proving Grounds
ShortName=chamberse
[309]
Name:=Muramite Proving Grounds
ShortName=chambersf
[316]
Name:=Muramite Proving Grounds
ShortName=provinggrounds
[317]
Name:=Anguish, the Fallen Palace
ShortName=anguish
[318]
Name:=Dranik's Hollows
ShortName=dranikhollowsa
[319]
Name:=Dranik's Hollows
ShortName=dranikhollowsb
[320]
Name:=Dranik's Hollows
ShortName=dranikhollowsc
[321]
Name:=Dranik's Hollows
ShortName=dranikhollowsd
[322]
Name:=Dranik's Hollows
ShortName=dranikhollowse
[323]
Name:=Dranik's Hollows
ShortName=dranikhollowsf
[324]
Name:=Dranik's Hollows
ShortName=dranikhollowsg
[325]
Name:=Dranik's Hollows
ShortName=dranikhollowsh
[326]
Name:=Dranik's Hollows
ShortName=dranikhollowsi
[327]
Name:=Dranik's Hollows
ShortName=dranikhollowsj
[328]
Name:=Catacombs of Dranik
ShortName=dranikcatacombsa
[329]
Name:=Catacombs of Dranik
ShortName=dranikcatacombsb
[330]
Name:=Catacombs of Dranik
ShortName=dranikcatacombsc
[331]
Name:=Sewers of Dranik
ShortName=draniksewersa
[332]
Name:=Sewers of Dranik
ShortName=draniksewersb
[333]
Name:=Sewers of Dranik
ShortName=draniksewersc
[334]
Name:=Riftseekers' Sanctum
ShortName=riftseekers
[335]
Name:=Harbingers' Spire
ShortName=harbingers
[336]
Name:=The Ruined City of Dranik
ShortName=dranik
[337]
Name:=The Broodlands
ShortName=broodlands
[338]
Name:=Stillmoon Temple
ShortName=stillmoona
[339]
Name:=The Ascent
ShortName=stillmoonb
[340]
Name:=Thundercrest Isles
ShortName=thundercrest
[341]
Name:=Lavaspinner's Lair
ShortName=delvea
[342]
Name:=Tirranun's Delve
ShortName=delveb
[343]
Name:=The Accursed Nest
ShortName=thenest
[344]
Name:=The Guild Lobby
ShortName=guildlobby
[345]
Name:=Guild Hall
ShortName=guildhall
[346]
Name:=The Barter Hall
ShortName=barter
[347]
Name:=Ruins of Illsalin
ShortName=illsalin
[348]
Name:=Imperial Bazaar
ShortName=illsalina
[349]
Name:=Temple of the Korlach
ShortName=illsalinb
[350]
Name:=The Nargilor Pits
ShortName=illsalinc
[351]
Name:=Dreadspire Keep
ShortName=dreadspire
[354]
Name:=The Hive
ShortName=drachnidhive
[355]
Name:=Living Larder
ShortName=drachnidhivea
[356]
Name:=Coven of the Skinwalkers
ShortName=drachnidhiveb
[357]
Name:=Queen Sendaii's Lair
ShortName=drachnidhivec
[358]
Name:=Stoneroot Falls
ShortName=westkorlach
[359]
Name:=Chambers of Xill
ShortName=westkorlacha
[360]
Name:=Caverns of the Lost
ShortName=westkorlachb
[361]
Name:=Lair of the Korlach
ShortName=westkorlachc
[362]
Name:=Undershore
ShortName=eastkorlach
[363]
Name:=Snarlstone Dens
ShortName=eastkorlacha
[364]
Name:=Shadowspine
ShortName=shadowspine
[365]
Name:=Corathus Creep
ShortName=corathus
[366]
Name:=Sporali Caverns
ShortName=corathusa
[367]
Name:=Corathus Lair
ShortName=corathusb
[368]
Name:=Shadowed Grove
ShortName=nektulosa
[369]
Name:=Arcstone
ShortName=arcstone
[370]
Name:=Relic
ShortName=relic
[371]
Name:=Skylance
ShortName=skylance
[372]
Name:=The Devastation
ShortName=devastation
[373]
Name:=The Seething Wall
ShortName=devastationa
[374]
Name:=Sverag, Stronghold of Rage
ShortName=rage
[375]
Name:=Razorthorn, Tower of Sullon Zek
ShortName=ragea
[376]