-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMap_Completion_A_Core.xml
3145 lines (3129 loc) · 557 KB
/
Map_Completion_A_Core.xml
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
<OverlayData>
<POIs>
<!-- MAP COMPLETION - Cities -->
<!-- Rata Sum -->
<Trail type="legs.map.core.rata" trailData="Data/LadyElyssa/Map Completion/Rata Sum - Arcane Council.trl" color="00FFFF"/>
<Trail type="legs.map.core.rata" trailData="Data/LadyElyssa/Map Completion/Rata Sum - Snaff Memorial.trl" color="00FFFF"/>
<Trail type="legs.map.core.rata" trailData="Data/LadyElyssa/Map Completion/Rata Sum - Home Instance.trl" color="00FFFF"/>
<Trail type="legs.map.core.rata.la" trailData="Data/LadyElyssa/Map Completion/Rata Sum via LA.trl" color="00FFFF"/>
<POI MapID="139" xpos="68.0501" ypos="382.605" zpos="279.144" type="legs.map.core.rata.la.start" GUID="XFAxDGQd/UiKZ3CIA4DOQA=="/>
<POI MapID="139" xpos="96.8605" ypos="385.831" zpos="196.521" type="legs.map.core.rata.la.mount.springer" GUID="0pLbr2/F9kmvRIqQRPvLLg=="/>
<POI MapID="139" xpos="110.331" ypos="402.984" zpos="181.592" type="legs.map.core.rata.la.glider.medium" GUID="pxsZhPxoWkKhzx2R4hYYMg=="/>
<POI MapID="139" xpos="38.4353" ypos="385.794" zpos="145.179" type="legs.map.core.rata.la.mount.jackal" GUID="WmZQdXy+xUaA4bD9rTbV1g=="/>
<POI MapID="139" xpos="32.434" ypos="111.134" zpos="-311.647" type="legs.map.core.rata.la.mount.raptor" GUID="CR4JjJa/jEucdUwlBwYxeg=="/>
<POI MapID="139" xpos="-228.404" ypos="3.07378" zpos="-481.883" type="legs.map.core.rata.la.mount.skyscale" GUID="EklQD6Q72km8jW0bOF4zWA=="/>
<POI MapID="139" xpos="-249.864" ypos="35.9877" zpos="-488.646" type="legs.map.core.rata.la.mount.jackal" GUID="bzbiu5fYaUu405dqaFZlvA=="/>
<POI MapID="139" xpos="-330.871" ypos="35.7422" zpos="-542.054" type="legs.map.core.rata.la.mount.skyscale" GUID="LG3ZI9xkBU+bV4moVslztA=="/>
<POI MapID="139" xpos="-64.2523" ypos="382.564" zpos="132.356" type="legs.map.core.rata.la.mount.jackal" GUID="0w0Z2E8uQUGXBL5dTmztmw=="/>
<POI MapID="139" xpos="-25.1259" ypos="362.116" zpos="218.556" type="legs.map.core.rata.la.mount.raptor" GUID="qonGEGW80UmWaIheSiCAJA=="/>
<POI MapID="139" xpos="51.9705" ypos="363.88" zpos="165.184" type="legs.map.core.rata.la.mount.raptor" GUID="1Xnds2rqWEORO9M57j2OQA=="/>
<POI MapID="139" xpos="32.5101" ypos="362.117" zpos="75.1565" type="legs.map.core.rata.la.mount.springer" GUID="LLgQUf2YA0SO59tEctFRsw=="/>
<POI MapID="139" xpos="30.1059" ypos="362.097" zpos="65.2273" type="legs.map.core.rata.la.mount.jackal" GUID="/htmqq7hqEyBI4B8B++0cA=="/>
<POI MapID="139" xpos="75.6463" ypos="332.904" zpos="37.5125" type="legs.map.core.rata.la.mount.jackal" GUID="/w5tKabXmkmvpVrdv2lxJQ=="/>
<POI MapID="139" xpos="-9.15488" ypos="339.427" zpos="99.8954" type="legs.map.core.rata.la.mount.raptor" GUID="jSuq0tbkUkGzNPUTISbm1A=="/>
<POI MapID="139" xpos="146.109" ypos="339.457" zpos="188.602" type="legs.map.core.rata.la.mount.raptor" GUID="c/DqKUwCs0a3j9rXXa+QhA=="/>
<POI MapID="139" xpos="73.4154" ypos="339.482" zpos="147.808" type="legs.map.core.rata.la.glider.medium" GUID="Ad//HM+ZYU+EMQ/9DpKegg=="/>
<POI MapID="139" xpos="-5.03807" ypos="108.955" zpos="-420.342" type="legs.map.core.rata.la.wp" GUID="v/Y0tJnRaEeutBbDSMGxqg==" copy="[&BLUEAAA=]" copy-message="Incubation Waypoint"/>
<POI MapID="139" xpos="-292.514" ypos="17.0846" zpos="-662.197" type="legs.map.core.rata.la.wp" GUID="fIyqYckmYECSYdaTWlVgkg==" copy="[&BAcFAAA=]" copy-message="Port Waypoint"/>
<POI MapID="650" xpos="-534.453" ypos="327.799" zpos="632.677" GUID="698m5QJ6QUq8doI8PD1WMw==" type="legs.map.core.rata.la.exit"/>
<POI MapID="139" xpos="166.103" ypos="363.751" zpos="173.862" GUID="S9a7uWedsECqU0vk+yA92g==" copy="[&BLYEAAA=]" copy-message="Accountancy Waypoint" type="legs.map.core.rata.la.wp"/>
<POI MapID="139" xpos="-15.9927" ypos="339.427" zpos="118.179" GUID="74D7kMQo10eUA+jsxWmzkg==" type="legs.map.core.rata.la.mount.raptor.leap"/>
<POI MapID="139" xpos="33.2417" ypos="339.427" zpos="236.724" GUID="XW6y3UvKdUeOoVxdvtYf7w==" type="legs.map.core.rata.la.mount.raptor.leap"/>
<POI MapID="139" xpos="68.5778" ypos="382.651" zpos="277.564" type="legs.map.core.rata.la.finish" GUID="swJQk93yuUmUQlt2+sBx5Q=="/>
<POI MapID="139" xpos="43.9522" ypos="334.102" zpos="152.48" GUID="i7wu143DkEql9oAIPFKvRw==" copy="[&BBQEAAA=]" copy-message="Magustan Court Waypoint" type="legs.map.core.rata.la.wp"/>
<POI MapID="139" xpos="63.8888" ypos="382.665" zpos="274.169" type="legs.map.core.rata.la.mount.jackal" GUID="6p1DSgw+qEWrphtnW4zY4g=="/>
<POI MapID="139" xpos="114.101" ypos="385.831" zpos="134.498" type="legs.map.core.rata.la.mount.jackal" GUID="Qdq4HqCq/kubYPxhRsnyaQ=="/>
<POI MapID="139" xpos="145.494" ypos="363.751" zpos="233.943" type="legs.map.core.rata.la.mount.jackal" GUID="t9dAfhohZEiRZxuuVkApmQ=="/>
<POI MapID="139" xpos="-9.94947" ypos="363.525" zpos="50.1266" type="legs.map.core.rata.la.mount.raptor" GUID="k2vTGS+9BkCh29vi7UPKSg=="/>
<POI MapID="139" xpos="59.8108" ypos="339.421" zpos="74.1225" type="legs.map.core.rata.la.mount.raptor" GUID="Id0W1HWbgUK/0cRsU1iO+w=="/>
<POI MapID="651" xpos="48.4022" ypos="488.134" zpos="158.446" GUID="GgdTtVPiwUm4oQNj8ZWAOw==" type="legs.map.core.rata.la.exit"/>
<POI MapID="649" xpos="-293.257" ypos="79.1691" zpos="43.7249" GUID="eQI8uxx2mkWMXZcHhOYPhg==" type="legs.map.core.rata.la.exit"/>
<!-- Divinity's Reach -->
<Trail type="legs.map.core.divinity" trailData="Data/LadyElyssa/Map Completion/Divinity's Reach.trl" color="00FFFF"/>
<POI MapID="18" xpos="67.0609" ypos="100.268" zpos="-511.589" type="legs.map.core.divinity.start" GUID="kRqR4jF9i0OUtuHVYDgZCw=="/>
<POI MapID="18" xpos="272.131" ypos="58.0424" zpos="-415.206" type="legs.map.core.divinity" GUID="45KjaElpUUGRIr/mg4VqOQ==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="243.959" ypos="80.8314" zpos="-161.701" type="legs.map.core.divinity" GUID="pB60zVwbekypKafTRR2FqQ==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="431.112" ypos="56.2661" zpos="-53.7817" type="legs.map.core.divinity" GUID="0gfge7qrQUaRznlslU9CAg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="308.844" ypos="61.8743" zpos="240.572" type="legs.map.core.divinity" GUID="NGTfelD7eECtpX7zKQ6hSg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="268.332" ypos="71.2254" zpos="322.034" type="legs.map.core.divinity" GUID="hx2qaTKxukWk6iaWeqzq1w==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="23.6664" ypos="133.906" zpos="8.99504" type="legs.map.core.divinity.jade" GUID="rIxtMmtbYEeau+V0/+Q+6Q=="/>
<POI MapID="18" xpos="14.2665" ypos="90.6059" zpos="215.797" type="legs.map.core.divinity" GUID="mTBcnsBKDkWCmSS0JNnWaw==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="323.968" ypos="56.5991" zpos="-303.902" type="legs.map.core.divinity.wp" GUID="lG8fCj1h20CK6N+3sTJMWA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="25.3949" ypos="133.836" zpos="7.17087" type="legs.map.core.divinity.wp" GUID="w7tPM/UMZUmabqeeiQo77w==" copy="[&BCkDAAA=]" copy-message="Palace Waypoint"/>
<POI MapID="18" xpos="-316.437" ypos="99.1591" zpos="159.592" type="legs.map.core.divinity.wp" GUID="Q+HAaTxVMEGzah1aHt4kJA==" copy="[&BCwDAAA=]" copy-message="Crown Pavilion Waypoint"/>
<POI MapID="18" xpos="143.582" ypos="72.8562" zpos="371.092" type="legs.map.core.divinity.wp" GUID="DZvRjCTnfkWiOR89Ks5Hkw==" copy="[&BCUDAAA=]" copy-message="Kormir Waypoint"/>
<POI MapID="18" xpos="269.144" ypos="55.0136" zpos="-397.445" type="legs.map.core.divinity.mount.beetle" GUID="sd6VuKWiIEWaTwe0eYEakQ=="/>
<POI MapID="18" xpos="351.577" ypos="76.2384" zpos="189.237" type="legs.map.core.divinity.mount.raptor" GUID="eWaU/CGqfE2RdJgCCDcNyA=="/>
<POI MapID="18" xpos="311.706" ypos="61.7154" zpos="249.833" type="legs.map.core.divinity.mount.jackal" GUID="XPKUiNVk20eL42/T5Uar4A=="/>
<POI MapID="18" xpos="184.766" ypos="81.7111" zpos="203.572" type="legs.map.core.divinity.mount.raptor" GUID="itBQ1zJ+eU6lWCUasfgpHw=="/>
<POI MapID="18" xpos="83.9072" ypos="137.671" zpos="-37.5379" type="legs.map.core.divinity.mount.skyscale" GUID="xHxUdjXfPkS5L8xLevhNMw=="/>
<POI MapID="18" xpos="65.5004" ypos="138.704" zpos="-126.841" type="legs.map.core.divinity.mount.beetle" GUID="8U6NSjMvfka6PL1lVgeX6A=="/>
<POI MapID="18" xpos="32.9924" ypos="138.743" zpos="-257.795" type="legs.map.core.divinity.mount.springer" GUID="hzLvNmt8k02orqnNSyQfCg=="/>
<POI MapID="18" xpos="-262.333" ypos="60.8581" zpos="-140.173" type="legs.map.core.divinity.mount.raptor" GUID="ytwzibZxAk+Qr/Q07QRY6A=="/>
<POI MapID="18" xpos="-180.154" ypos="69.5072" zpos="-48.8963" type="legs.map.core.divinity.mount.skyscale" GUID="eFLWZ57BgUGUHFKfyKQ4+Q=="/>
<POI MapID="18" xpos="35.9137" ypos="79.3231" zpos="186.033" type="legs.map.core.divinity.mount.skyscale" GUID="A0ejSX2r1Ueb6ikizQk0MA=="/>
<POI MapID="18" xpos="-62.7308" ypos="106.406" zpos="152.404" type="legs.map.core.divinity.mount.skyscale" GUID="v0GB62yR+Ue25ra+rG1iog=="/>
<POI MapID="18" xpos="224.694" ypos="75.3171" zpos="172.95" type="legs.map.core.divinity" GUID="CI4+pm6ttEqPaSfz10vHqA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="83.6421" ypos="136.018" zpos="-37.2819" type="legs.map.core.divinity.number.2" GUID="Dm8EPCgMZUywf0dNXa32Yg=="/>
<POI MapID="18" xpos="-11.2204" ypos="53.3928" zpos="-377.902" GUID="kjD7yHVQMk6lQDfurtdVJA==" copy="[&BCoDAAA=]" copy-message="Commons Waypoint" type="legs.map.core.divinity.wp"/>
<POI MapID="18" xpos="-240.413" ypos="58.6921" zpos="-323.295" GUID="1wHA3uJY10+H3sssdQ+ebQ==" type="legs.map.core.divinity" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="18" xpos="-239.588" ypos="58.692" zpos="-321.959" GUID="+BmjkBU3wEyu3C9b1P81kw==" copy="[&BCcDAAA=]" copy-message="Melandru Waypoint" type="legs.map.core.divinity.wp"/>
<POI MapID="18" xpos="260.788" ypos="61.3986" zpos="125.465" GUID="oP1iJT8D2kas6WEfuMUq9g==" type="legs.map.core.divinity.mount.skyscale"/>
<POI MapID="18" xpos="-261.094" ypos="96.9599" zpos="-292.058" type="legs.map.core.divinity.glider.medium" GUID="twii1vNXgUyEQZKDbkAmNg=="/>
<POI MapID="18" xpos="-308.629" ypos="102.463" zpos="-232.421" type="legs.map.core.divinity.glider.medium" GUID="+9wtBBbjfECrlLMPhsbn2Q=="/>
<POI MapID="18" xpos="-282.362" ypos="73.7798" zpos="-162.853" type="legs.map.core.divinity.glider.medium" GUID="ex90qLsCxkmxr4NmDW/JcQ=="/>
<POI MapID="18" xpos="328.075" ypos="80.3433" zpos="-87.8514" type="legs.map.core.divinity.glider.medium" GUID="CzoXcJiTkk6rGAunfVN0/w=="/>
<POI MapID="18" xpos="403.83" ypos="99.547" zpos="184.209" type="legs.map.core.divinity.glider.medium" GUID="LcTa6Kau6kOmtF1jlXcrKw=="/>
<POI MapID="18" xpos="103.14" ypos="139.366" zpos="-65.5279" type="legs.map.core.divinity.mount.springer" GUID="1CtkvoCoy0CvwDtNMG97wA=="/>
<POI MapID="18" xpos="105.492" ypos="144.073" zpos="-69.5436" type="legs.map.core.divinity.mount.skyscale" GUID="vaz1M9bfEUW7ivHkwQKW7g=="/>
<POI MapID="18" xpos="142.185" ypos="159.794" zpos="-114.045" type="legs.map.core.divinity.glider.medium" GUID="ImC5dcRlukGlUB2mjZJHlg=="/>
<POI MapID="18" xpos="103.526" ypos="103.154" zpos="378.037" type="legs.map.core.divinity.glider.medium" GUID="iP6++cKh40ScBUQzuH6U1g=="/>
<POI MapID="18" xpos="118.781" ypos="102.254" zpos="-477.03" type="legs.map.core.divinity.glider.medium" GUID="nUIHD6W3hE+/9z1LCL8eCw=="/>
<POI MapID="18" xpos="466.424" ypos="102.53" zpos="-246.257" type="legs.map.core.divinity.glider.medium" GUID="xTVrce/uXUGjmg03ixONOg=="/>
<POI MapID="18" xpos="71.0575" ypos="100.265" zpos="-503.511" type="legs.map.core.divinity.mount.jackal" GUID="uUBpj2iGYEeecbcBZ4aC6Q=="/>
<POI MapID="18" xpos="416.545" ypos="100.633" zpos="-293.405" type="legs.map.core.divinity.mount.beetle" GUID="UeMQOY0EbE6913YQC+T4qw=="/>
<POI MapID="18" xpos="247.774" ypos="79.6407" zpos="-161.72" type="legs.map.core.divinity.mount.raptor" GUID="QkBxltei8kyuFNq6eU34NQ=="/>
<POI MapID="18" xpos="350.223" ypos="56.1973" zpos="-104.162" type="legs.map.core.divinity.mount.jackal" GUID="FC0mxR95SUajjSzeDUbP1Q=="/>
<POI MapID="18" xpos="426.145" ypos="55.673" zpos="-56.1608" type="legs.map.core.divinity.mount.jackal" GUID="kVmcMq9e3E60aJgS6DuL+A=="/>
<POI MapID="18" xpos="260.845" ypos="71.267" zpos="318.456" type="legs.map.core.divinity.mount.jackal" GUID="VQVdbLt8PUqipUOIKEcK4w=="/>
<POI MapID="18" xpos="168.005" ypos="82.0942" zpos="267.933" type="legs.map.core.divinity.mount.dismount" GUID="7WrXHmFCV0yp4DRHWkrhPg=="/>
<POI MapID="18" xpos="182.809" ypos="138.325" zpos="24.8531" type="legs.map.core.divinity.mount.jackal" GUID="TiaYEWqmgkqBiqtnoWJB7Q=="/>
<POI MapID="18" xpos="5.71422" ypos="79.9957" zpos="-276.88" type="legs.map.core.divinity.mount.jackal" GUID="FmLvCisGFEqyftFfZRf60w=="/>
<POI MapID="18" xpos="-0.86055" ypos="79.6385" zpos="-266.625" type="legs.map.core.divinity.mount.raptor" GUID="4fBLNDHzl0+pwYKonOtZiw=="/>
<POI MapID="18" xpos="-113.678" ypos="79.7431" zpos="-155.832" type="legs.map.core.divinity.mount.beetle" GUID="0eaGZjs7iUOeeMsvp38QDA=="/>
<POI MapID="18" xpos="-320.943" ypos="100.381" zpos="-262.857" type="legs.map.core.divinity.number.3" GUID="X69QMfoQlUmp1G+LdRwNdg=="/>
<POI MapID="18" xpos="-244.275" ypos="59.3538" zpos="81.5553" type="legs.map.core.divinity.mount.jackal" GUID="W7VWmaQcskecBujmx7uX+w=="/>
<POI MapID="18" xpos="-167.563" ypos="72.0806" zpos="-54.8738" type="legs.map.core.divinity.number.4" GUID="fNhpzL20rU69nDf+hv+0gA=="/>
<POI MapID="18" xpos="-163.226" ypos="79.6383" zpos="-29.1852" type="legs.map.core.divinity.mount.beetle" GUID="NHt35Sf4u0Gy+Vv+2iMF9Q=="/>
<POI MapID="18" xpos="448.445" ypos="100.607" zpos="-295.586" type="legs.map.core.divinity.number.5" GUID="AwnlJwvK3EGrsrPyJUD7nw=="/>
<POI MapID="18" xpos="452.348" ypos="100.65" zpos="-287.664" type="legs.map.core.divinity.mount.jackal" GUID="DkMmqK2780GG/qGdLSmwwA=="/>
<POI MapID="18" xpos="492.074" ypos="67.0576" zpos="-133.826" type="legs.map.core.divinity.finish" GUID="19jBy1isRUCWh8Ed7CqQ5A=="/>
<!-- Hoelbrak -->
<Trail type="legs.map.core.hoelbrak" trailData="Data/LadyElyssa/Map Completion/Hoelbrak.trl" color="00FFFF"/>
<Trail type="legs.map.core.hoelbrak" trailData="Data/LadyElyssa/Map Completion/Hoelbrak - Hunter's Hearth.trl" color="00FFFF"/>
<Trail type="legs.map.core.hoelbrak" trailData="Data/LadyElyssa/Map Completion/Hoelbrak - Knut Whitebear's Loft.trl" color="00FFFF"/>
<Trail type="legs.map.core.hoelbrak" trailData="Data/LadyElyssa/Map Completion/Hoelbrak - Stonewright's Steading.trl" color="00FFFF"/>
<POI MapID="326" xpos="493.002" ypos="311.839" zpos="-189.327" type="legs.map.core.hoelbrak.start" GUID="71rH2JkOK0OgabK2vbsWKw=="/>
<POI MapID="326" xpos="534.437" ypos="254.979" zpos="27.3056" type="legs.map.core.hoelbrak" GUID="NcxIZKRcbEeqSPzXQxk9sA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="326" xpos="474.841" ypos="316.61" zpos="-227.087" GUID="fHXZ/LgsRUewci1XXH5EZg==" type="legs.map.core.hoelbrak.mount.springer"/>
<POI MapID="326" xpos="623.42" ypos="298.372" zpos="-260.42" GUID="1LWIUK8KvUmfmE7TY/28WA==" copy="[&BI0DAAA=]" copy-message="Eastern Watchpost Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="483.052" ypos="312.253" zpos="-202.393" GUID="zCh2CdA8yUaxuFgB0dBzNg==" type="legs.map.core.hoelbrak.number.6"/>
<POI MapID="326" xpos="483.052" ypos="310.653" zpos="-202.393" GUID="2YoSbnmtsEGi7RyWUfVMHw==" type="legs.map.core.hoelbrak.mount.beetle"/>
<POI MapID="326" xpos="403.031" ypos="251.49" zpos="-70.1534" GUID="T2M/KIh5L0+cthQVaHfrrg==" type="legs.map.core.hoelbrak.wp" copy="[&BI4DAAA=]" copy-message="Southern Watchpost Waypoint"/>
<POI MapID="326" xpos="486.702" ypos="312.652" zpos="-198.082" GUID="s9FEJeRHgEChPbJB41Wetw==" type="legs.map.core.hoelbrak.number.2"/>
<POI MapID="326" xpos="486.702" ypos="311.152" zpos="-198.081" GUID="uE1zkAlCjkWKF9WFNQLgxg==" type="legs.map.core.hoelbrak.mount.raptor"/>
<POI MapID="326" xpos="632.614" ypos="244.854" zpos="134.597" GUID="gqikgrWqPUOlNrZV75Z3cQ==" copy="[&BIwDAAA=]" copy-message="Legends Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="540.685" ypos="255.721" zpos="33.92" GUID="eLuNyG5W5E2vTJTM8SqR3A==" type="legs.map.core.hoelbrak.number.3"/>
<POI MapID="326" xpos="348.042" ypos="250.578" zpos="476.989" GUID="MM84R394jkS2Xgyu58Hluw==" copy="[&BIkDAAA=]" copy-message="Bear Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="453.061" ypos="218.473" zpos="179.75" GUID="ccBehYT9xkK6SLE5KfJhvQ==" type="legs.map.core.hoelbrak.mount.raptor"/>
<POI MapID="326" xpos="537.753" ypos="206.057" zpos="408.882" GUID="X2T2GnEv7EaNXuGIQPokjQ==" type="legs.map.core.hoelbrak.mount.beetle"/>
<POI MapID="326" xpos="431.82" ypos="218.258" zpos="185.013" GUID="F5z6h0jUYEeMB1boZM/93g==" type="legs.map.core.hoelbrak.number.4"/>
<POI MapID="326" xpos="274.352" ypos="257.344" zpos="339.472" GUID="nP5Q4DNIUkmp6GbCwwQRLw==" copy="[&BIgDAAA=]" copy-message="Raven Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="248.52" ypos="264.906" zpos="252.088" GUID="QXGINOEAzUmJbwTwNRekLQ==" type="legs.map.core.hoelbrak.number.5"/>
<POI MapID="326" xpos="159.586" ypos="270.317" zpos="264.602" GUID="OvSiWVbojE+3HDF3R3Vapw==" type="legs.map.core.hoelbrak.mount.skyscale"/>
<POI MapID="326" xpos="-48.7208" ypos="240.983" zpos="153.451" GUID="9JjX5FW68EWQRLH5+GlTKA==" copy="[&BI0DAAA=]" copy-message="Eastern Watchpost Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="278.83" ypos="329.287" zpos="-259.067" GUID="CEp60RrRcUiYpYLw6YYp5A==" type="legs.map.core.hoelbrak.number.7"/>
<POI MapID="326" xpos="168.161" ypos="335.111" zpos="-126.735" GUID="vq8dXfWB6EqqzWkTpiqpeA==" type="legs.map.core.hoelbrak.number.8"/>
<POI MapID="326" xpos="238.275" ypos="232.962" zpos="46.4311" GUID="QNNHZLt30EyahB4XhytvWg==" copy="[&BAgFAAA=]" copy-message="Upper Balcony Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="166.785" ypos="335.114" zpos="-128.895" GUID="0UdODnJog0mtuNtOIGgX3g==" type="legs.map.core.hoelbrak.number.9"/>
<POI MapID="326" xpos="29.5248" ypos="394.166" zpos="-322.423" GUID="+5ntgTyFfU+4B+Qf0XNunQ==" copy="[&BAgFAAA=]" copy-message="Upper Balcony Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="-202.617" ypos="289.887" zpos="152.482" GUID="fIAvtE3fAUqerezb/gpRUA==" type="legs.map.core.hoelbrak.number.10"/>
<POI MapID="326" xpos="-407.104" ypos="294.294" zpos="41.5252" GUID="pmXiAX6b80aKyLaazikxfQ==" copy="[&BJADAAA=]" copy-message="Hero's Compass Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="326" xpos="-44.0881" ypos="258.477" zpos="426.659" type="legs.map.core.hoelbrak.wp" GUID="4OiC4aU4OUubH9Jk8qyYrw==" copy="[&BI4DAAA=]" copy-message="Southern Watchpost Waypoint"/>
<POI MapID="326" xpos="289.354" ypos="325.121" zpos="-221.203" type="legs.map.core.hoelbrak.glider.medium" GUID="3ixrYmfKfUOY4qJfooRL8w=="/>
<POI MapID="326" xpos="307.86" ypos="318.748" zpos="-185.427" type="legs.map.core.hoelbrak.glider.medium" GUID="xkMPkgD490K3FsERwW/RvQ=="/>
<POI MapID="326" xpos="307.87" ypos="316.747" zpos="-185.408" type="legs.map.core.hoelbrak.mount.raptor" GUID="7JW9k7buL0mTbhOI2NztIg=="/>
<POI MapID="326" xpos="375.497" ypos="298.964" zpos="-159.651" type="legs.map.core.hoelbrak.glider.medium" GUID="Z3O9p4vJnE+FLTtFVX/Wog=="/>
<POI MapID="326" xpos="464.633" ypos="259.128" zpos="89.1298" type="legs.map.core.hoelbrak.glider.medium" GUID="B4UDzQPkf0aCMUmp49GyiA=="/>
<POI MapID="326" xpos="226.574" ypos="257.344" zpos="336.74" type="legs.map.core.hoelbrak.mount.springer" GUID="1jZIz78DfEKiCRWLpfkKLA=="/>
<POI MapID="326" xpos="84.1722" ypos="294.878" zpos="239.511" type="legs.map.core.hoelbrak.glider.medium" GUID="irXZSexoJkqM381KSJJezQ=="/>
<POI MapID="326" xpos="139.311" ypos="334.996" zpos="-126.208" type="legs.map.core.hoelbrak.glider.medium" GUID="IERnjhpSBkC0zZTtgW+f5w=="/>
<POI MapID="326" xpos="151.486" ypos="335.213" zpos="-104.102" type="legs.map.core.hoelbrak.glider.medium" GUID="g4nN6LCKWkCRTHZuogH81g=="/>
<POI MapID="326" xpos="-230.125" ypos="287.044" zpos="133.748" type="legs.map.core.hoelbrak.glider.medium" GUID="dU9JJXpa0Um21sWd7VX3sw=="/>
<POI MapID="326" xpos="-302.863" ypos="277.941" zpos="100.759" type="legs.map.core.hoelbrak.mount.skyscale" GUID="Ke3X6k9990qQKVhwCGPf/w=="/>
<POI MapID="326" xpos="-192.066" ypos="289.311" zpos="231.668" type="legs.map.core.hoelbrak.glider.medium" GUID="u81bar5Ou0q3HJuetMwS/Q=="/>
<POI MapID="326" xpos="284.128" ypos="329.791" zpos="-263.318" type="legs.map.core.hoelbrak.number.11" GUID="z5PdJsNXCU6+uLzEbRWCJw=="/>
<POI MapID="326" xpos="561.874" ypos="306.661" zpos="-361.506" type="legs.map.core.hoelbrak.mount.raptor" GUID="/Bk76MBT6kamCGnk+yg0pg=="/>
<POI MapID="326" xpos="433.201" ypos="244.852" zpos="-106.151" type="legs.map.core.hoelbrak.mount.jackal" GUID="bJ0PhSy/wEy6kXDkotlNRA=="/>
<POI MapID="326" xpos="576.388" ypos="277.757" zpos="-47.6091" type="legs.map.core.hoelbrak.mount.jackal" GUID="p5k94K9HaU2D+2hfNrPMjw=="/>
<POI MapID="326" xpos="543.21" ypos="256.314" zpos="32.2448" type="legs.map.core.hoelbrak.mount.beetle" GUID="P8/MXhI7L0q6lk2FC26VMA=="/>
<POI MapID="326" xpos="541.184" ypos="255.316" zpos="42.657" type="legs.map.core.hoelbrak.mount.jackal" GUID="RdeeLWeId0KHw4TDT599Dg=="/>
<POI MapID="326" xpos="426.132" ypos="218.008" zpos="184.086" type="legs.map.core.hoelbrak.mount.beetle" GUID="KG8IVwxU+kWo2sd2TKj1Kw=="/>
<POI MapID="326" xpos="228.505" ypos="266.605" zpos="289.066" type="legs.map.core.hoelbrak.mount.raptor" GUID="RAyLuX6OU0yP8DgechpTzA=="/>
<POI MapID="326" xpos="242.367" ypos="262.593" zpos="248.647" type="legs.map.core.hoelbrak.mount.jackal" GUID="iG3qRy1/DkS8TEB+QnbjaQ=="/>
<POI MapID="326" xpos="62.0775" ypos="246.923" zpos="134.901" type="legs.map.core.hoelbrak.mount.raptor" GUID="occSMlBJUk6g9km4HQPqgA=="/>
<POI MapID="326" xpos="271.12" ypos="329.118" zpos="-257.744" type="legs.map.core.hoelbrak.mount.jackal" GUID="P0mixi3JokaQy0guwpmpFA=="/>
<POI MapID="326" xpos="119.255" ypos="302.288" zpos="-156.06" type="legs.map.core.hoelbrak.mount.raptor" GUID="80fHIYEcEE6ElwHniIUDoA=="/>
<POI MapID="326" xpos="87.4244" ypos="302.724" zpos="-244.962" type="legs.map.core.hoelbrak.mount.raptor" GUID="4vBHFK2zC0y8aUjo3g81Ug=="/>
<POI MapID="326" xpos="159.002" ypos="334.526" zpos="-124.886" type="legs.map.core.hoelbrak.mount.beetle" GUID="YEUAte7qj0GW8dmXu6+zFA=="/>
<POI MapID="326" xpos="-212.094" ypos="290.482" zpos="150.687" type="legs.map.core.hoelbrak.mount.raptor" GUID="gQZMWTsrZUKBluj8WEz/kw=="/>
<POI MapID="326" xpos="-135.137" ypos="269.144" zpos="251.627" type="legs.map.core.hoelbrak.mount.beetle" GUID="mmADhQrtCEOpE0ZYdLYwEQ=="/>
<POI MapID="326" xpos="129.102" ypos="291.981" zpos="-135.642" type="legs.map.core.hoelbrak" GUID="jklPzV+xEEaRloDROJWaQw==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="326" xpos="294.081" ypos="332.188" zpos="-306.475" type="legs.map.core.hoelbrak.finish" GUID="e5k20/7AEEOjWtWLn+InDA=="/>
<POI MapID="376" xpos="395.497" ypos="336.463" zpos="-332.008" GUID="T8KYS++4ZEqU3cw+yZeQ5Q==" type="legs.map.core.hoelbrak.exit"/>
<POI MapID="374" xpos="12.7151" ypos="394.168" zpos="-351.619" type="legs.map.core.hoelbrak.jade" GUID="ArP3jPbITU++hSGyIurydQ=="/>
<POI MapID="375" xpos="85.4662" ypos="341.971" zpos="-324.031" GUID="mWzz9xAFv0eTrwR4OrAYSQ==" copy="[&BAgFAAA=]" copy-message="Upper Balcony Waypoint" type="legs.map.core.hoelbrak.wp"/>
<POI MapID="374" xpos="11.4938" ypos="394.168" zpos="-353.675" GUID="57DEV6aFEUyZqROlipyQCg==" copy="[&BAgFAAA=]" copy-message="Upper Balcony Waypoint" type="legs.map.core.hoelbrak.wp"/>
<!-- Black Citadel -->
<Trail type="legs.map.core.citadel" trailData="Data/LadyElyssa/Map Completion/Black Citadel.trl" color="00FFFF"/>
<Trail type="legs.map.core.citadel" trailData="Data/LadyElyssa/Map Completion/Black Citadel - Citadel Stockade.trl" color="00FFFF"/>
<POI MapID="218" xpos="411.113" ypos="131.804" zpos="224.556" type="legs.map.core.citadel.start" GUID="ldfu9xM4okqk926Sf2iX2g=="/>
<POI MapID="218" xpos="421.181" ypos="131.488" zpos="221.273" GUID="7kL0+ruX80Wu+C81+sxuSw==" type="legs.map.core.citadel" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="218" xpos="391.1" ypos="132.668" zpos="217.532" GUID="9+q2Z/owNEmv+v4dDYuLcg==" type="legs.map.core.citadel.number.1"/>
<POI MapID="218" xpos="363.119" ypos="140.072" zpos="258.535" GUID="TEuRtjFpHkOaBbXRpBBNwg==" type="legs.map.core.citadel.mount.skyscale"/>
<POI MapID="218" xpos="280.837" ypos="130.323" zpos="432.875" GUID="OCerhcTS+0KAz+DBUGlPyw==" type="legs.map.core.citadel.mount.raptor"/>
<POI MapID="218" xpos="213.363" ypos="137.161" zpos="328.524" GUID="nO1HdBUtNESTPTV/9dl24g==" copy="[&BKUDAAA=]" copy-message="Mustering Ground Waypoint" type="legs.map.core.citadel.wp"/>
<POI MapID="218" xpos="390.124" ypos="132.858" zpos="213.697" GUID="St0Pib7OREqvMelditW50w==" type="legs.map.core.citadel.number.2"/>
<POI MapID="460" xpos="62.0477" ypos="159.705" zpos="230.281" GUID="TcXr/e45ZUur4QbNcffoVQ==" type="legs.map.core.citadel.exit"/>
<POI MapID="218" xpos="286.526" ypos="139.068" zpos="93.3288" GUID="rssTKI6WSECAQSNtraKQVg==" type="legs.map.core.citadel.mount.dismount"/>
<POI MapID="218" xpos="-32.2873" ypos="100.448" zpos="-49.0794" GUID="T5DKqMop8UqlVnbvNZ/HXw==" type="legs.map.core.citadel.glider.medium"/>
<POI MapID="218" xpos="-67.3736" ypos="15.6239" zpos="-148.86" GUID="jtk6FwO03kW9FvFEZtlkbg==" type="legs.map.core.citadel.mount.jackal"/>
<POI MapID="218" xpos="-139.412" ypos="17.3907" zpos="-197.703" GUID="9gxX7YzeI0W9enK/SviPUQ==" type="legs.map.core.citadel.mount.springer"/>
<POI MapID="218" xpos="282.845" ypos="139.034" zpos="71.7959" GUID="NB7u+x5QUEyoGWjvpRzSYg==" type="legs.map.core.citadel.mount.skyscale"/>
<POI MapID="218" xpos="-148.496" ypos="70.8377" zpos="-290.087" GUID="xRTFlinMAUq+lDWnGSYntA==" type="legs.map.core.citadel.mount.skyscale"/>
<POI MapID="218" xpos="-148.496" ypos="69.3377" zpos="-290.087" GUID="rvST7Zhgw0OieLOheM8ACg==" type="legs.map.core.citadel.glider.medium"/>
<POI MapID="218" xpos="-311.31" ypos="13.8981" zpos="-250.604" GUID="7Fg76XGdNEyoIOBJhl8seg==" copy="[&BKQDAAA=]" copy-message="Gladium Waypoint" type="legs.map.core.citadel.wp"/>
<POI MapID="218" xpos="19.5833" ypos="100.346" zpos="-76.2117" GUID="kd+JrTPZxkiyu9AJUuZpQQ==" type="legs.map.core.citadel.number.3"/>
<POI MapID="218" xpos="-13.1182" ypos="168.299" zpos="55.806" GUID="3g7sKOoOl0m2/tlSKacBRQ==" type="legs.map.core.citadel.mount.raptor"/>
<POI MapID="218" xpos="7.86258" ypos="181.487" zpos="215.319" GUID="dA2FH1dhUEaQu2wkZCorMw==" type="legs.map.core.citadel.mount.springer"/>
<POI MapID="218" xpos="9.81702" ypos="202.218" zpos="208.904" GUID="UI+KOn4l9kmYIJWE78/xWw==" copy="[&BK0DAAA=]" copy-message="Imperator's Waypoint" type="legs.map.core.citadel.wp"/>
<POI MapID="218" xpos="-2.72953" ypos="214.14" zpos="202.479" GUID="7kwG+3aXVUiAD8JHI6mPHQ==" type="legs.map.core.citadel.number.4"/>
<POI MapID="218" xpos="-2.72953" ypos="215.64" zpos="202.479" GUID="vknBVThqt02ErHhnUYHZEA==" type="legs.map.core.citadel.mount.skyscale"/>
<POI MapID="218" xpos="-287.597" ypos="44.0799" zpos="100.316" GUID="lubI/vfNIE+EmlOmsHVt2w==" copy="[&BKkDAAA=]" copy-message="Ligacus Aquilo Waypoint" type="legs.map.core.citadel.wp"/>
<POI MapID="218" xpos="-1.78444" ypos="214.084" zpos="205.323" GUID="rJ+2+MERBkqVuzJu65koUA==" type="legs.map.core.citadel.number.5"/>
<POI MapID="218" xpos="-1.78444" ypos="215.584" zpos="205.323" GUID="kddweZ8PFEG15aq03s197Q==" type="legs.map.core.citadel.mount.skyscale"/>
<POI MapID="218" xpos="-296.21" ypos="26.8147" zpos="116.804" GUID="uQrG6WS97k+iD2Z6A7s/lQ==" type="legs.map.core.citadel.mount.springer"/>
<POI MapID="218" xpos="13.7231" ypos="245.013" zpos="183.768" GUID="v0RGLCFse0Wlf2a/7uH24w==" copy="[&BK0DAAA=]" copy-message="Imperator's Waypoint" type="legs.map.core.citadel.wp"/>
<POI MapID="218" xpos="-164.813" ypos="176.458" zpos="296.766" GUID="iTpV5XMXhEyYukUIesL7dQ==" type="legs.map.core.citadel.mount.bof" iconFile="Data/LadyElyssa/Images/Mounts/Bond of Faith.png"/>
<POI MapID="218" xpos="-153.456" ypos="172.65" zpos="306.766" GUID="0ufcMcK9pUeelqyx0WZ22Q==" type="legs.map.core.citadel.number.6"/>
<POI MapID="218" xpos="-153.456" ypos="171.15" zpos="306.766" GUID="Afjiin1hhku0s0PF4iE+7Q==" type="legs.map.core.citadel.mount.beetle"/>
<POI MapID="218" xpos="32.7266" ypos="169.405" zpos="372.506" GUID="44aFqW2CwkSkid83/opMXQ==" type="legs.map.core.citadel.number.7"/>
<POI MapID="218" xpos="28.601" ypos="169.405" zpos="373.514" GUID="etQQPsB/+U2/NII+NSbz6Q==" type="legs.map.core.citadel.number.8"/>
<POI MapID="218" xpos="-15.6424" ypos="25.8715" zpos="254.726" GUID="dHCH38/73kW+ValgsMmZmg==" copy="[&BKYDAAA=]" copy-message="Memorial Waypoint" type="legs.map.core.citadel.wp"/>
<POI MapID="218" xpos="368.664" ypos="137.239" zpos="202.878" type="legs.map.core.citadel.mount.beetle" GUID="kosEsFadQ06MHdrwOuBkTw=="/>
<POI MapID="218" xpos="251.449" ypos="177.934" zpos="-21.0531" type="legs.map.core.citadel.mount.skyscale" GUID="KJskwcj9m02OtCErRfcOzA=="/>
<POI MapID="218" xpos="25.0694" ypos="102.533" zpos="-51.4553" type="legs.map.core.citadel.mount.jackal" GUID="aWHfdrVIgUWJhlAfTaQl8A=="/>
<POI MapID="218" xpos="-47.5765" ypos="101.688" zpos="-59.3635" type="legs.map.core.citadel.mount.jackal" GUID="aJZscd+QJEiPThDAHdeCzA=="/>
<POI MapID="218" xpos="-140.592" ypos="35.8953" zpos="-238.773" type="legs.map.core.citadel.mount.skyscale" GUID="QCaypMLogkiNpywwGq8t/w=="/>
<POI MapID="218" xpos="19.6494" ypos="100.351" zpos="-73.2416" type="legs.map.core.citadel.mount.jackal" GUID="IvPlB+QT1kSIFuUD1V9hqA=="/>
<POI MapID="218" xpos="84.5564" ypos="168.586" zpos="56.4524" type="legs.map.core.citadel.mount.beetle" GUID="fblQ75g9e06OQVe4eSl8LQ=="/>
<POI MapID="218" xpos="84.4566" ypos="168.347" zpos="248.054" type="legs.map.core.citadel.mount.jackal" GUID="ZSQwDKYg3E+8RsRXi6lWIQ=="/>
<POI MapID="218" xpos="-280.382" ypos="21.9945" zpos="277.081" type="legs.map.core.citadel.mount.beetle" GUID="veO0Jo8H80S9SF/La2F6bA=="/>
<POI MapID="218" xpos="35.069" ypos="169.341" zpos="374.935" type="legs.map.core.citadel.mount.jackal" GUID="n/7nBdnl9UmxvILDcs5G9A=="/>
<POI MapID="218" xpos="52.9508" ypos="159.029" zpos="447.937" type="legs.map.core.citadel.mount.raptor" GUID="KHZujfe/IUiHq50ErlykgQ=="/>
<POI MapID="218" xpos="116.25" ypos="139.725" zpos="466.337" type="legs.map.core.citadel.mount.raptor" GUID="vmnyObFbmE6ZeK4WkPxedg=="/>
<POI MapID="218" xpos="25.4353" ypos="169.383" zpos="376.334" type="legs.map.core.citadel.mount.raptor" GUID="zYQvFeEeYkqfPD1ynB0D4w=="/>
<POI MapID="218" xpos="-42.6354" ypos="140.428" zpos="478.618" type="legs.map.core.citadel.mount.beetle" GUID="Ons/WFxV/0qV2ogI0X2v0A=="/>
<POI MapID="218" xpos="-11.5794" ypos="139.53" zpos="549.853" type="legs.map.core.citadel.finish" GUID="OzBnCJKfO0ewOqeZkDFGHQ=="/>
<!-- The Grove -->
<Trail type="legs.map.core.grove" trailData="Data/LadyElyssa/Map Completion/The Grove.trl" color="00FFFF"/>
<Trail type="legs.map.core.grove" trailData="Data/LadyElyssa/Map Completion/The Grove - Dreamer's Terrace.trl" color="00FFFF"/>
<POI MapID="91" xpos="-76.1227" ypos="73.4343" zpos="272.162" type="legs.map.core.grove.number.1" GUID="Mm0RBqYXsECPVuL5VDwzdA==" heightOffset="2.5"/>
<POI MapID="91" xpos="-62.9733" ypos="72.3535" zpos="269.907" GUID="n3PQ4+xhvEuJdnvUlPBEuA==" type="legs.map.core.grove.mount.jackal"/>
<POI MapID="91" xpos="-6.65525" ypos="71.7625" zpos="271.672" GUID="um3T6wlkf0CzunVgMbxKBQ==" type="legs.map.core.grove.mount.springer"/>
<POI MapID="91" xpos="-35.4879" ypos="73.9314" zpos="240.354" GUID="I35lsn/4xU6kZLIwafa9UQ==" type="legs.map.core.grove.mount.raptor"/>
<POI MapID="91" xpos="100.272" ypos="62.9196" zpos="62.5294" GUID="pg3yyQJmHUCFNL1l/85QbQ==" type="legs.map.core.grove.mount.skyscale"/>
<POI MapID="91" xpos="90.5353" ypos="89.1038" zpos="21.8328" GUID="jeJ4NcWMqUeoNrLhMeBRiA==" type="legs.map.core.grove.mount.skyscale"/>
<POI MapID="91" xpos="1.23242" ypos="48.4854" zpos="12.49" GUID="wPo3bM0SgkeL9r1k9F9Cvg==" type="legs.map.core.grove.mount.jackal"/>
<POI MapID="91" xpos="46.6266" ypos="0.96" zpos="136.635" GUID="gyA5S6lY/kyG3vTdmnW7aA==" type="legs.map.core.grove.mount.springer"/>
<POI MapID="91" xpos="46.6266" ypos="3.25" zpos="136.635" GUID="9GWv+B6iPEaoamPGH1Qtnw==" type="legs.map.core.grove.mount.skyscale"/>
<POI MapID="91" xpos="131.883" ypos="0.291046" zpos="92.8382" GUID="L2yh96YuxUqPivrmXG5LmA==" type="legs.map.core.grove.mount.jackal"/>
<POI MapID="91" xpos="26.2681" ypos="10.6603" zpos="-4.36648" GUID="ANWZOux0W0mllsaPQg81XQ==" type="legs.map.core.grove.mount.skyscale"/>
<POI MapID="91" xpos="4.51162" ypos="-0.336044" zpos="-69.4243" GUID="JU79pt19DUCVWpcSNEqVRg==" type="legs.map.core.grove.mount.skimmer"/>
<POI MapID="91" xpos="-50.1046" ypos="23.5759" zpos="146.392" type="legs.map.core.grove.glider.medium" GUID="/u1DCzsRekmoZIJHobES0g=="/>
<POI MapID="91" xpos="10.9474" ypos="24.0991" zpos="2.17845" type="legs.map.core.grove.glider.medium" GUID="ewI5rwTa90OjIkWJS4AA4g=="/>
<POI MapID="91" xpos="99.2694" ypos="46.822" zpos="-59.0016" type="legs.map.core.grove.glider.medium" GUID="9r13YN6ot06in7Lbm4ExXg=="/>
<POI MapID="91" xpos="77.228" ypos="28.413" zpos="-23.514" type="legs.map.core.grove.glider.medium" GUID="ylDFFmssP0C6/z9KMZBBiA=="/>
<POI MapID="91" xpos="-76.1227" ypos="73.4343" zpos="272.162" type="legs.map.core.grove.start" GUID="DK4qJEYz5kqiH8brSsk9Tg=="/>
<POI MapID="91" xpos="-94.2997" ypos="-0.193227" zpos="26.3179" type="legs.map.core.grove.finish" GUID="z0PfXXMoT0aoaTsQXRSnDw=="/>
<POI MapID="91" xpos="-94.2997" ypos="-0.193227" zpos="26.3179" type="legs.map.core.grove.wp" GUID="egvBOFj+0kyiZrYlI3DVmA==" copy="[&BO8AAAA=]" copy-message="Shaemoor Waypoint
Queensdale"/>
<!-- LION'S ARCH -->
<Trail type="legs.map.core.la.all" trailData="Data/LadyElyssa/Map Completion/Lion's Arch.trl" color="00FFFF"/>
<POI MapID="50" xpos="635.068" ypos="26.3405" zpos="48.9313" type="legs.map.core.la.wp" GUID="z8j2ARz8Ik+wJU0FrHnrHw==" iconFile="Data/LadyElyssa/Images/Waypoints/Lion's Arch/Trader's Forum.png" copy="[&BBAEAAA=]" copy-message="Trader's Forum Waypoint"/>
<POI MapID="50" xpos="-149.422" ypos="23.4096" zpos="414.579" type="legs.map.core.la.start" GUID="apYof/NAjkqzan8yAy0Law=="/>
<POI MapID="50" xpos="373.418" ypos="25.5991" zpos="310.607" type="legs.map.core.la.wp" GUID="5dBtYMYvXEusNh+84lo7MA==" copy="[&BA0EAAA=]" copy-message="Guild Bluff Waypoint"/>
<POI MapID="50" xpos="472.927" ypos="21.077" zpos="211.411" type="legs.map.core.la.number.2" GUID="WtK9B5jSWUSl78uWkB+eLw=="/>
<POI MapID="50" xpos="570.107" ypos="104.471" zpos="-301.677" type="legs.map.core.la.wp" GUID="Vtwfz7TFqkawqWQys0YTmg==" copy="[&BBEEAAA=]" copy-message="Gate Hub Plaza Waypoint"/>
<POI MapID="50" xpos="93.7453" ypos="29.0402" zpos="162.088" type="legs.map.core.la.number.3" GUID="cqVK9mGKwEyXLM1YDHrUJw=="/>
<POI MapID="50" xpos="91.0191" ypos="30.0161" zpos="162.49" type="legs.map.core.la.mount.skyscale" GUID="mBwci7ERnkuuNuJynsajsw=="/>
<POI MapID="50" xpos="-93.6882" ypos="23.4234" zpos="170.446" type="legs.map.core.la.mount.springer" GUID="8p+yi+WrNkm564tkBd1OLw=="/>
<POI MapID="50" xpos="-559.634" ypos="5.03269" zpos="139.33" type="legs.map.core.la.wp" GUID="XYIMjDLmT0WxV0BNcPP1wQ==" copy="[&BC4EAAA=]" copy-message="Western Ward Waypoint"/>
<POI MapID="50" xpos="-606.79" ypos="15.5695" zpos="392.544" type="legs.map.core.la.wp" GUID="fmn2QjgYJ0+LGjpsCtBqyw==" copy="[&BC4EAAA=]" copy-message="Western Ward Waypoint"/>
<POI MapID="50" xpos="-457.542" ypos="14.5988" zpos="204.463" type="legs.map.core.la.number.4" GUID="PDpmaaBTYEi+iYlDl7lhgA=="/>
<POI MapID="50" xpos="-455.175" ypos="14.7156" zpos="201.47" type="legs.map.core.la.number.5" GUID="vgx1+xSZn0utpKTI4D44OQ=="/>
<POI MapID="50" xpos="95.8427" ypos="29.0314" zpos="160.075" type="legs.map.core.la.number.6" GUID="t/T8VqeFK0Wi6rtYg9C1Ew=="/>
<POI MapID="50" xpos="-439.382" ypos="-36.4269" zpos="-87.1574" type="legs.map.core.la.wp" GUID="TqQ9+pWZfk2u+F7a2XyUmQ==" copy="[&BBEEAAA=]" copy-message="Gate Hub Plaza Waypoint"/>
<POI MapID="50" xpos="265.685" ypos="31.7684" zpos="-395.177" type="legs.map.core.la.finish" GUID="j2IRCGFRZUqnxbUiXc13NQ=="/>
<POI MapID="50" xpos="337.373" ypos="62.2576" zpos="-272.27" type="legs.map.core.la.wp" GUID="PelDTxZ75ECjBYvW4SN5Vw==" copy="[&BA4EAAA=]" copy-message="Bloodcoast Ward Waypoint"/>
<POI MapID="50" xpos="283.518" ypos="30.8171" zpos="-339.769" type="legs.map.core.la.number.7" GUID="X5o2rdGTuEOjgpfPDdBMXA=="/>
<POI MapID="50" xpos="482.646" ypos="24.8565" zpos="185.173" type="legs.map.core.la.mount.beetle" GUID="Syh/KHEXakaYejbzvOG11Q=="/>
<POI MapID="50" xpos="509.6" ypos="41.5034" zpos="-210.098" type="legs.map.core.la.mount.springer" GUID="lkFmzvx6ck2z60QXZUjFwA=="/>
<POI MapID="50" xpos="447.171" ypos="32.9218" zpos="46.391" type="legs.map.core.la.glider.medium" GUID="9kIecC2+SEqq1RtefUnlrg=="/>
<POI MapID="50" xpos="462.912" ypos="17.7208" zpos="213.052" type="legs.map.core.la.mount.skyscale" GUID="mXNE0ro3n06rEEXMx9fDew=="/>
<POI MapID="50" xpos="-414.483" ypos="20.695" zpos="197.049" type="legs.map.core.la.mount.springer" GUID="kykEDNwfU0aKYHeXTWzHVA=="/>
<POI MapID="50" xpos="-366.52" ypos="0.47856" zpos="216.034" type="legs.map.core.la.mount.springer" GUID="keCt2wNHyUu/Abhvac3urQ=="/>
<POI MapID="50" xpos="-351.881" ypos="25.1456" zpos="214.999" type="legs.map.core.la.mount.skyscale" GUID="tsBTqVUrsEq17JoZl7oT8A=="/>
<POI MapID="50" xpos="-309.536" ypos="53.0369" zpos="207.185" type="legs.map.core.la.glider.medium" GUID="2bOLV6GdB0SgZenU5c1Yew=="/>
<POI MapID="50" xpos="-289.654" ypos="51.0071" zpos="183.366" type="legs.map.core.la.glider.medium" GUID="AzFjd9LAl0i996TnNlTkAQ=="/>
<POI MapID="50" xpos="-292.504" ypos="-3.84565" zpos="-8.23955" type="legs.map.core.la.mount.skimmer" GUID="3pr36BEHK02BL9KXKKQ5Lw=="/>
<POI MapID="50" xpos="-129.488" ypos="31.807" zpos="-300.708" type="legs.map.core.la.mount.raptor" GUID="YNb1tyOkA0OafELElCCQDg=="/>
<POI MapID="50" xpos="-134.031" ypos="30.5134" zpos="-305.791" type="legs.map.core.la.mount.raptor.leap" GUID="BKZmSyOtH0O9wKiB9M2RWw=="/>
<POI MapID="50" xpos="-186.759" ypos="33.8265" zpos="-347.792" type="legs.map.core.la.mount.raptor.leap" GUID="niB9hWBMUke9DSitCIsxgw=="/>
<POI MapID="50" xpos="-289.199" ypos="33.4419" zpos="-367.598" type="legs.map.core.la.mount.skyscale" GUID="J4fUHxw/a0C7IjsMICm2ow=="/>
<POI MapID="50" xpos="-316.175" ypos="159.993" zpos="-369.175" type="legs.map.core.la.mount.skyscale" GUID="ixdMq2Wly0mfTOP8vUb33Q=="/>
<POI MapID="50" xpos="-507.553" ypos="-1.91887" zpos="-56.3182" type="legs.map.core.la.mount.skimmer" GUID="vK+ZONlsuEOZb2zwc6dBJg=="/>
<POI MapID="50" xpos="-580.617" ypos="8.41226" zpos="304.473" type="legs.map.core.la.mount.springer" GUID="kf/2GbbTEk2IWcCZZ87WCA=="/>
<POI MapID="50" xpos="-584.634" ypos="11.1959" zpos="315.152" type="legs.map.core.la.glider.medium" GUID="12j/gf/9kECrPypgcXxC4w=="/>
<POI MapID="50" xpos="170.697" ypos="16.7915" zpos="60.9761" type="legs.map.core.la.mount.skyscale" GUID="eNZEW1TLzkGdVWSMQPMsfQ=="/>
<POI MapID="50" xpos="425.913" ypos="21.9552" zpos="187.176" type="legs.map.core.la.mount.springer" GUID="enUmMka5PUalJXS6dCZEaA=="/>
<POI MapID="50" xpos="529.924" ypos="24.9763" zpos="40.2967" type="legs.map.core.la.mount.skyscale" GUID="ni7IZQshO0C+XU9rSR0zXw=="/>
<POI MapID="50" xpos="452.08" ypos="33.8936" zpos="-38.5482" type="legs.map.core.la.mount.skyscale" GUID="gMR+s+uDkEOEUmFnnVJuqg=="/>
<POI MapID="50" xpos="82.871" ypos="22.0137" zpos="70.253" type="legs.map.core.la.mount.springer" GUID="LcFjPBXp0UmzLhjIowZYxw=="/>
<POI MapID="50" xpos="301.061" ypos="32.9384" zpos="-304.858" type="legs.map.core.la.mount.springer" GUID="ekYc1/AcEUekwkLR3NN6dA=="/>
<POI MapID="50" xpos="436.892" ypos="35.6071" zpos="-4.44959" type="legs.map.core.la" GUID="EdrMEHPK10a4EUSM/fA0mA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="208.052" ypos="30.9953" zpos="-293.618" type="legs.map.core.la" GUID="vFCVwBBPh06r0u12wGUMEg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-147.394" ypos="23.4096" zpos="411.225" type="legs.map.core.la.mount.raptor" GUID="en7dUE15zECT/xgPdRtrXQ=="/>
<POI MapID="50" xpos="69.6023" ypos="24.5868" zpos="313.703" type="legs.map.core.la.mount.raptor" GUID="syG2b7MFHUOWRbCjmdDesQ=="/>
<POI MapID="50" xpos="77.8555" ypos="28.3496" zpos="258.679" type="legs.map.core.la.mount.jackal" GUID="P/YVHw8nLUqXs1iIXYTrEw=="/>
<POI MapID="50" xpos="115.406" ypos="39.2875" zpos="207.659" type="legs.map.core.la.mount.jackal" GUID="6qK/Sgtb9kO8bDNuF2Vghw=="/>
<POI MapID="50" xpos="605.676" ypos="32.409" zpos="34.3499" type="legs.map.core.la.mount.raptor" GUID="BauZTeP4xUSIvesjWaQamg=="/>
<POI MapID="50" xpos="479.197" ypos="26.3977" zpos="-97.7175" type="legs.map.core.la.mount.beetle" GUID="ttYngqqW6kSybpYhQ9RV9Q=="/>
<POI MapID="50" xpos="274.999" ypos="13.7922" zpos="105.633" type="legs.map.core.la.mount.skyscale" GUID="LtPpNAbhhkeBsVEBp06U8w=="/>
<POI MapID="50" xpos="-270.643" ypos="0.58198" zpos="1.95641" type="legs.map.core.la" GUID="xAojYBPQP0iGsv3cVIZr/g==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-306.452" ypos="7.60323" zpos="278.474" type="legs.map.core.la" GUID="GAN7GLbtNkqY7AZbMz+IxA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="72.8573" ypos="24.5952" zpos="317.924" type="legs.map.core.la" GUID="jv15SDi9SkCWaGHe2/m1yg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-121.832" ypos="21.7745" zpos="303.585" type="legs.map.core.la" GUID="RnC5o8v7702ILcD2hq+B9Q==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-337.721" ypos="7.73005" zpos="280.122" type="legs.map.core.la" GUID="h19+K6N7ck2lL40F6/R8aA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-294.886" ypos="-1.01178" zpos="-3.92754" type="legs.map.core.la" GUID="IQfs+3a4Ikup5GoFWfZBZA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-267.079" ypos="-62.3831" zpos="-127.815" type="legs.map.core.la" GUID="/GBDr1KRMEyyiazowLll0Q==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-10.875" ypos="-50.966" zpos="-100.015" type="legs.map.core.la" GUID="O/IJzhAgo0e7gVbt0s0gMg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="-524.086" ypos="0.608016" zpos="-48.525" type="legs.map.core.la" GUID="AgJYZoPcWEOrJ10uE85TRg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="50" xpos="24.8809" ypos="23.2299" zpos="168.683" type="legs.map.core.la.mount.raptor" GUID="j+EAmGsWu0ORZY5G3vLy3A=="/>
<POI MapID="50" xpos="-104.979" ypos="23.0685" zpos="175.256" type="legs.map.core.la.mount.raptor" GUID="vyqetaUWfkGXqMwZBR1LWg=="/>
<POI MapID="50" xpos="-178.03" ypos="20.8738" zpos="198.148" type="legs.map.core.la.mount.raptor" GUID="nAvGhIo38UKHXApl/5KahA=="/>
<POI MapID="50" xpos="-126.785" ypos="21.2019" zpos="305.399" type="legs.map.core.la.mount.beetle" GUID="H+l8zcuR/E6CF/AS4FbfdQ=="/>
<POI MapID="50" xpos="-294.1" ypos="30.8578" zpos="348.237" type="legs.map.core.la.mount.raptor" GUID="+MJ8Mft0a0upoM6u8noc0w=="/>
<POI MapID="50" xpos="-342.771" ypos="29.96" zpos="368.565" type="legs.map.core.la.mount.jackal" GUID="MAI/Q2G1uEeOyZW4hL77rA=="/>
<POI MapID="50" xpos="-458.853" ypos="14.4091" zpos="209.951" type="legs.map.core.la.mount.raptor" GUID="Nzcjqdg3XUaVVFGJzSzszQ=="/>
<POI MapID="50" xpos="-479.775" ypos="4.0866" zpos="288.041" type="legs.map.core.la.mount.jackal" GUID="knLrKdaIxEmWB/FMYASzpg=="/>
<POI MapID="50" xpos="-452.462" ypos="14.6515" zpos="201.078" type="legs.map.core.la.mount.raptor" GUID="a1X/wCqXAE2G0UPx+k12rA=="/>
<POI MapID="50" xpos="-81.2239" ypos="6.78006" zpos="-222.833" type="legs.map.core.la.mount.jackal" GUID="50ZMeZQsNUeLZv+VbqVslA=="/>
<POI MapID="50" xpos="95.0809" ypos="29.0314" zpos="155.746" type="legs.map.core.la.mount.raptor" GUID="3Mr6JkWvh0KwcZ92nzROzQ=="/>
<POI MapID="50" xpos="80.9856" ypos="28.837" zpos="43.3646" type="legs.map.core.la.mount.beetle" GUID="FAnBLjP1v0yfkOGS2A9WHQ=="/>
<POI MapID="50" xpos="156.269" ypos="31.4979" zpos="-239.263" type="legs.map.core.la.mount.raptor" GUID="2zJjT/VVLkCPhw7RxeTa9Q=="/>
<!-- MAP COMPLETION - Regions -->
<!-- ASCALON -->
<Trail type="legs.map.core.ashford.wp" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford WP.trl" color="CC66FF"/>
<POI MapID="19" xpos="-1078.28" ypos="51.6743" zpos="236.301" type="legs.map.core.ashford.wp.number.1" GUID="dktndF3Y+ESlc0qjGze2nQ=="/>
<POI MapID="19" xpos="-1095.81" ypos="54.9663" zpos="478.653" type="legs.map.core.ashford.wp.wp" GUID="nyQaQiCgtUKHbrQNQkWn0w==" copy="[&BIABAAA=]" copy-message="Smokestead Waypoint"/>
<POI MapID="19" xpos="-1075.61" ypos="51.669" zpos="233.776" type="legs.map.core.ashford.wp.number.2" GUID="JECOaEJa7k2vIbAhAmru2w=="/>
<Trail type="legs.map.core.ashford.all.number.1" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.ashford.all.number.2" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.ashford.all.number.3" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 3.trl" color="00FFFF"/>
<Trail type="legs.map.core.ashford.all.number.4" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 4.trl" color="00FFFF"/>
<Trail type="legs.map.core.ashford.all.number.5" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 5.trl" color="00FFFF"/>
<Trail type="legs.map.core.ashford.all.number.6" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 6.trl" color="00FFFF"/>
<Trail type="legs.map.core.ashford.all.number.6" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 6 Alt.trl" texture="Data/LadyElyssa/Images/Dashed Line with Shadow.png" color="00FFFF" alpha="0.6"/>
<Trail type="legs.map.core.ashford.all.number.7" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford 7.trl" color="00FFFF"/>
<POI MapID="19" xpos="-1078.59" ypos="51.6736" zpos="236.962" type="legs.map.core.ashford.all.start" GUID="dQpwd2CGN0uBC4k5anKOjA=="/>
<POI MapID="19" xpos="-1075.84" ypos="51.6682" zpos="233.637" type="legs.map.core.ashford.all.number.2" GUID="4Hb4k6HPX0i4l3cW/IbaeA=="/>
<POI MapID="19" xpos="-864.501" ypos="46.1341" zpos="-34.3061" type="legs.map.core.ashford.all.number.3" GUID="MklyVhHyHEK7fWjH3Vj4Tw=="/>
<POI MapID="19" xpos="-865.398" ypos="45.8988" zpos="-31.9915" type="legs.map.core.ashford.all.number.4" GUID="53hhVK0Gh02d80dow2eVwA=="/>
<POI MapID="19" xpos="324.117" ypos="34.3873" zpos="331.952" type="legs.map.core.ashford.all.number.5" GUID="8AJI6SYM50GfPz5qR2ux8g=="/>
<POI MapID="19" xpos="663.223" ypos="38.6344" zpos="501.999" type="legs.map.core.ashford.all.number.6" GUID="O4AVOhtcgUmvzvJOm2iObw=="/>
<POI MapID="19" xpos="-498.953" ypos="53.1238" zpos="-413.517" type="legs.map.core.ashford.all.wp" GUID="Cd1w7t1CL0CcVFIUUO4TYw==" copy="[&BIABAAA=]" copy-message="Smokestead Waypoint"/>
<POI MapID="19" xpos="-1078.34" ypos="51.6716" zpos="233.726" type="legs.map.core.ashford.all.number.7" GUID="VSuNDlKl4EKNIWXiJ3tBdA=="/>
<POI MapID="19" xpos="586.114" ypos="53.1448" zpos="485.528" type="legs.map.core.ashford.all.glider.medium" GUID="js5VUcFP7UyZ127Olx/0oA=="/>
<POI MapID="19" xpos="585.471" ypos="52.8942" zpos="472.843" type="legs.map.core.ashford.all.mount.springer" GUID="4U6rJzoiGU6FuHudkiE0Tg=="/>
<POI MapID="19" xpos="-1118.17" ypos="39.2164" zpos="387.977" type="legs.map.core.ashford.all.mount.jackal" GUID="Q71Vy07LP0mrK5yKwe/MgA=="/>
<POI MapID="19" xpos="-1092.38" ypos="58.7748" zpos="506.131" type="legs.map.core.ashford.all.mount.raptor" GUID="tnJBG56nYkyN0j5dmPGFmQ=="/>
<POI MapID="19" xpos="-924.272" ypos="40.1214" zpos="322.24" type="legs.map.core.ashford.all.mount.raptor" GUID="2PzNTMzlJ0y5eUd3ACLN5g=="/>
<POI MapID="19" xpos="-813.612" ypos="47.7049" zpos="266.93" type="legs.map.core.ashford.all.mount.raptor" GUID="ODBlGmQ5Xke85JXf4+nRWg=="/>
<POI MapID="19" xpos="-1074.2" ypos="51.6215" zpos="224.526" type="legs.map.core.ashford.all.mount.beetle" GUID="0nwsqoHHqU+uMBnKO/990g=="/>
<POI MapID="19" xpos="-868.684" ypos="43.9947" zpos="-233.521" type="legs.map.core.ashford.all.mount.beetle" GUID="Utcs3uFEYUOmukI4gFMl4A=="/>
<POI MapID="19" xpos="-857.713" ypos="46.0768" zpos="-35.6533" type="legs.map.core.ashford.all.mount.beetle" GUID="zWdIeo6HUkiXuwrudjXtJA=="/>
<POI MapID="19" xpos="-681.337" ypos="0.425269" zpos="48.1091" type="legs.map.core.ashford.all.mount.jackal" GUID="nQs/tc5R1028qTAb+WSXBA=="/>
<POI MapID="19" xpos="-861.867" ypos="45.7088" zpos="-26.6243" type="legs.map.core.ashford.all.mount.beetle" GUID="VN48CMxImUCbXdnYwJ9Xbw=="/>
<POI MapID="19" xpos="-463.353" ypos="51.9874" zpos="19.4892" type="legs.map.core.ashford.all.mount.raptor" GUID="PkDiTPf0JEu/D9DaAHkWZw=="/>
<POI MapID="19" xpos="-522.149" ypos="53.8411" zpos="-112.212" type="legs.map.core.ashford.all.mount.beetle" GUID="EIG3XrKJ2k2hGKvXjiqHXA=="/>
<POI MapID="19" xpos="-347.641" ypos="48.3639" zpos="130.596" type="legs.map.core.ashford.all.mount.beetle" GUID="6oILJQNjsU6vKXapbdWMmQ=="/>
<POI MapID="19" xpos="-225.533" ypos="59.2152" zpos="448.192" type="legs.map.core.ashford.all.mount.beetle" GUID="aatsuMSzI0KZW670u8Yuxg=="/>
<POI MapID="19" xpos="87.2972" ypos="17.013" zpos="236.727" type="legs.map.core.ashford.all.mount.jackal" GUID="4qLvHRqJ1k+raayvjshN3A=="/>
<POI MapID="19" xpos="12.5266" ypos="47.453" zpos="159.364" type="legs.map.core.ashford.all.mount.beetle" GUID="C2gBRtO620WM0LX2wq/m0w=="/>
<POI MapID="19" xpos="322.996" ypos="34.7213" zpos="326.998" type="legs.map.core.ashford.all.mount.beetle" GUID="HTCsNT7yIUi6jY78zwG2ig=="/>
<POI MapID="19" xpos="335.921" ypos="33.0729" zpos="339.738" type="legs.map.core.ashford.all.mount.beetle" GUID="ZqfPRj7TzUShvDla9NNclw=="/>
<POI MapID="19" xpos="652.593" ypos="33.9309" zpos="468.784" type="legs.map.core.ashford.all.mount.beetle" GUID="J91C7Nnm20W07jz3mlk9XQ=="/>
<POI MapID="19" xpos="662.88" ypos="36.672" zpos="502.049" type="legs.map.core.ashford.all.mount.beetle" GUID="JcMaN7rd1keo/CqAV73ZZg=="/>
<POI MapID="19" xpos="1145.54" ypos="32.6762" zpos="496.926" type="legs.map.core.ashford.all.mount.raptor" GUID="uzhXGcVeeUuKbsXoP2J1rw=="/>
<POI MapID="19" xpos="1175.26" ypos="29.3343" zpos="284.576" type="legs.map.core.ashford.all.mount.jackal" GUID="hmjv+M5aAESYMMfCT+aN/Q=="/>
<POI MapID="19" xpos="1084.05" ypos="35.6625" zpos="200.16" type="legs.map.core.ashford.all.mount.raptor" GUID="8AX2uZC7F0yj3s48vr5hwg=="/>
<POI MapID="19" xpos="1099.87" ypos="33.2165" zpos="-184.583" type="legs.map.core.ashford.all.mount.beetle" GUID="bS1YRD3hfUCrgSwn9tmQxQ=="/>
<POI MapID="19" xpos="925.097" ypos="0.0986202" zpos="-454.437" type="legs.map.core.ashford.all.mount.skimmer" GUID="ZU0sfwmlNE294+RQkAbvxw=="/>
<POI MapID="19" xpos="691.993" ypos="25.5122" zpos="-492.027" type="legs.map.core.ashford.all.mount.raptor" GUID="sbzecDEhaEqWYDFpSGPZ5g=="/>
<POI MapID="19" xpos="289.93" ypos="0.277441" zpos="-172.593" type="legs.map.core.ashford.all.mount.beetle" GUID="ZXw12lU6GEWwsnFFC6MP2g=="/>
<POI MapID="19" xpos="43.7307" ypos="29.1331" zpos="-141.953" type="legs.map.core.ashford.all.mount.raptor" GUID="3qMTZ9B4xkid3AZoxz0GKQ=="/>
<POI MapID="19" xpos="-127.247" ypos="50.4104" zpos="-188.818" type="legs.map.core.ashford.all.mount.jackal" GUID="3o4MG/O8IUKZGFj0343S2Q=="/>
<POI MapID="19" xpos="-275.224" ypos="30.8297" zpos="-190.138" type="legs.map.core.ashford.all.mount.beetle" GUID="TiimddQQH0O3CC1Y01AVEg=="/>
<POI MapID="19" xpos="-277.865" ypos="36.7379" zpos="-515.331" type="legs.map.core.ashford.all.mount.skyscale" GUID="SdoQhtzoVEqSm0CU0q35IA=="/>
<POI MapID="19" xpos="-1082.57" ypos="51.6338" zpos="229.612" type="legs.map.core.ashford.all.mount.beetle" GUID="UFT+O3P/6kGgBTJ1GZihMg=="/>
<POI MapID="19" xpos="-1134.17" ypos="66.5705" zpos="118.375" type="legs.map.core.ashford.all.finish" GUID="YqnsxiyQIkadXKAHh6XYMA=="/>
<POI MapID="19" xpos="-556.849" ypos="18.4082" zpos="529.157" type="legs.map.core.ashford.all.wp" GUID="rkE5Gqv9M0iP8YkRvKi/DQ==" copy="[&BIABAAA=]" copy-message="Smokestead Waypoint"/>
<POI MapID="19" xpos="-825.34" ypos="51.3038" zpos="-508.541" type="legs.map.core.ashford.all.wp" GUID="ZRAbvxTtuUqDYIXBdzG3mw==" copy="[&BH8BAAA=]" copy-message="Vir's Gate Waypoint"/>
<POI MapID="19" xpos="-579.681" ypos="0.477692" zpos="59.9525" type="legs.map.core.ashford.all.wp" GUID="H/8aiAhbAE+wspFJ+2elXQ==" copy="[&BH8BAAA=]" copy-message="Vir's Gate Waypoint"/>
<POI MapID="19" xpos="359.2" ypos="48.1857" zpos="87.5388" type="legs.map.core.ashford.all.wp" GUID="Fd3io2B4iUeBuMx1xopmPg==" copy="[&BIYBAAA=]" copy-message="Ascalonian Catacombs Waypoint"/>
<POI MapID="19" xpos="787.554" ypos="-17.9245" zpos="336.877" type="legs.map.core.ashford.all.wp" GUID="F0fzUMbF7kujZRbasowOEQ==" copy="[&BIcBAAA=]" copy-message="Ascalon City Waypoint"/>
<POI MapID="19" xpos="-843.109" ypos="46.0793" zpos="-171.008" type="legs.map.core.ashford.all.mount.springer" GUID="sbPYuHDFAUyb6M8PwG+WDw=="/>
<POI MapID="19" xpos="-312.13" ypos="44.9607" zpos="88.6827" type="legs.map.core.ashford.all.mount.springer" GUID="KPMWjUm6gEaQqmINLBlk8A=="/>
<POI MapID="19" xpos="174.827" ypos="59.9782" zpos="352.031" type="legs.map.core.ashford.all.mount.skyscale" GUID="gZgNkt5gR0OZBErlxIsxZA=="/>
<POI MapID="19" xpos="368.053" ypos="30.5833" zpos="95.9801" type="legs.map.core.ashford.all.mount.springer" GUID="53HXJ/JZyUK7xio/eFQkyg=="/>
<POI MapID="19" xpos="631.746" ypos="47.3641" zpos="-467.244" type="legs.map.core.ashford.all.mount.springer" GUID="WqBa1iPwNEKC6uRoKqumlA=="/>
<POI MapID="19" xpos="605.216" ypos="46.5316" zpos="-379.62" type="legs.map.core.ashford.all.glider.medium" GUID="rBwql1jyNEiPs912pmmjBw=="/>
<POI MapID="19" xpos="-315.22" ypos="13.0375" zpos="-355.712" type="legs.map.core.ashford.all.mount.springer" GUID="cbX2FpDQUkagH1XDbM0Yuw=="/>
<POI MapID="19" xpos="-302.289" ypos="22.4052" zpos="-411.384" type="legs.map.core.ashford.all.mount.skyscale" GUID="4MlJEJmAh0edO/uFyuL7AQ=="/>
<POI MapID="19" xpos="-406.84" ypos="29.7299" zpos="-546.042" type="legs.map.core.ashford.all.mount.skyscale" GUID="vwjNV7ZcMku8d+6wrmwHAg=="/>
<POI MapID="19" xpos="954.89" ypos="75.7617" zpos="530.241" type="legs.map.core.ashford.all.mount.skyscale" GUID="+J97y+XS80OYSqtIs654mw=="/>
<POI MapID="19" xpos="993.98" ypos="39.9496" zpos="46.4323" type="legs.map.core.ashford.all.mount.skyscale" GUID="KYHY/Wi/tkWDXL2ABkzgiA=="/>
<POI MapID="19" xpos="978.724" ypos="-0.836984" zpos="-357.828" type="legs.map.core.ashford.all.mount.skimmer" GUID="UVPgg3j3q0GUHrxF7H5q/g=="/>
<POI MapID="19" xpos="470.093" ypos="-0.61605" zpos="-282.297" type="legs.map.core.ashford.all.mount.skimmer" GUID="LeeZYbXVE0uJ/BoqFDTUHA=="/>
<POI MapID="19" xpos="-1154.47" ypos="42.749" zpos="267.149" type="legs.map.core.ashford.all.heartinfo" GUID="ixzZ7q2ZXEaAnYT/nSlwHg==" info="SQUISH Spider Egg Sac & KILL Barn Spiders

SWEEP Spider Webs & KILL Canyon Spider Hatchlings

FILL Feed Troughs & FLATTEN Wurm Mounds" infoRange="65"/>
<POI MapID="19" xpos="-1116.57" ypos="55.8915" zpos="488.883" type="legs.map.core.ashford.all.heartinfo" GUID="eQNV+oecc061OIx+6x8d2Q==" info="USE Cannons, KILL Skritt, DESTROY Charr Target Dummy" infoRange="98"/>
<POI MapID="19" xpos="-1010.12" ypos="15.9901" zpos="564.271" type="legs.map.core.ashford.all.heartinfo" GUID="NkoirBMLWUqXL0RFstAt0A==" info="KILL Lashtail Devourers" infoRange="65"/>
<POI MapID="19" xpos="-984.599" ypos="48.2713" zpos="380.053" type="legs.map.core.ashford.all.heartinfo" GUID="rFwg5f4rVkKCUALClQzCPg==" info="KILL Flame Legion & DEACTIVATE Unexploded Mortar Shells

USE Experimental Mortar" infoRange="80"/>
<POI MapID="19" xpos="-837.337" ypos="48.1949" zpos="289.538" type="legs.map.core.ashford.all.heartinfo" GUID="xAKJmhGAuU+k98h7X3fyEg==" info="CLEAN Junk Piles, SET Rat Traps, SORT Pile of Gears

KILL Oozes, Rats & Flame Legion" infoRange="88"/>
<POI MapID="19" xpos="-674.569" ypos="-0.825657" zpos="492.6" type="legs.map.core.ashford.all.heartinfo" GUID="L07OLk8x5kCwWcdJ/z4aTg==" info="CLEAN Tar Pools, REPAIR Broken Cages

KILL Rock Drakes

RESURRECT Fishers" infoRange="58"/>
<POI MapID="19" xpos="-542.646" ypos="21.3853" zpos="542.443" type="legs.map.core.ashford.all.heartinfo" GUID="284yROwMRU2cMzVaimIDcQ==" info="KILL Flame Legion & Disable Flame Legion Power Sources" infoRange="76"/>
<POI MapID="19" xpos="-515.727" ypos="24.4945" zpos="460.513" type="legs.map.core.ashford.all.heartinfo" GUID="Ru1Iyz+rI06Z4qfPQZy00g==" info="KILL Embers & Disable Flame Legion Power Sources" infoRange="15"/>
<POI MapID="19" xpos="-894.923" ypos="23.9596" zpos="-317.573" type="legs.map.core.ashford.all.heartinfo" GUID="BN211J4jGk2szOetvfqBBg==" info="DESTROY Ascalonian Artifacts

KILL Ghosts" infoRange="80"/>
<POI MapID="19" xpos="-822.839" ypos="56.6706" zpos="-479.856" type="legs.map.core.ashford.all.heartinfo" GUID="mJ2GY3VgAEChu6GKOo1sLA==" info="KILL Ghosts" infoRange="100"/>
<POI MapID="19" xpos="-712.811" ypos="35.7718" zpos="182.002" type="legs.map.core.ashford.all.heartinfo" GUID="wiBhsqAIHk6E+K+FEko+oA==" info="DESTROY Ancient Ascalonian Wine Flasks

KILL Ghosts" infoRange="100"/>
<POI MapID="19" xpos="-585.591" ypos="39.3695" zpos="155.755" type="legs.map.core.ashford.all.heartinfo" GUID="ctdyyCe0jE6dSOZSa6ZcQQ==" info="DESTROY Ancient Ascalonian Wine Flasks

KILL Ghosts" infoRange="32"/>
<POI MapID="19" xpos="-460.65" ypos="54.3343" zpos="71.3919" type="legs.map.core.ashford.all.heartinfo" GUID="x4Sjaa+TMUuVQb3x0RyX/Q==" info="TALK to Braggarts & Loafers" infoRange="50"/>
<POI MapID="19" xpos="-437.605" ypos="50.0298" zpos="-115.811" type="legs.map.core.ashford.all.heartinfo" GUID="caSf89f2IEOOEK3x2bg6WA==" info="EVENT KILL Flame Legion" infoRange="100"/>
<POI MapID="19" xpos="-508.985" ypos="39.0988" zpos="-298.622" type="legs.map.core.ashford.all.heartinfo" GUID="wNLP5QSHREyasD3IxKkmgg==" info="DISABLE Flame Legion Power Source, KILL Embers & KILL Flame Legion" infoRange="100"/>
<POI MapID="19" xpos="-506.991" ypos="42.9633" zpos="-444.359" type="legs.map.core.ashford.all.heartinfo" GUID="sJfvNnCasUSddMEqrHWemg==" info="DISABLE Flame Legion Power Source, KILL Embers & KILL Flame Legion" infoRange="50"/>
<POI MapID="19" xpos="-377.968" ypos="87.253" zpos="294.366" type="legs.map.core.ashford.all.heartinfo" GUID="M4ZDT4PGZ0Sw0Qm/QcMAkQ==" info="SQUISH Spider Egg Sacs (Weapon Swap) & KILL Forest Spiders

KILL Ghosts" infoRange="100"/>
<POI MapID="19" xpos="-472.405" ypos="104.639" zpos="411.304" type="legs.map.core.ashford.all.heartinfo" GUID="1o28OCPnkkycnY7O0roFVA==" info="KILL Ghosts

EVENT Dispatch Captain Calhaan's Ghost" infoRange="75"/>
<POI MapID="19" xpos="-350.022" ypos="51.8897" zpos="421.723" type="legs.map.core.ashford.all.heartinfo" GUID="+tanh2f78kaM6utVoSOvmg==" info="SQUISH Spider Egg Sacs (Weapon Swap) & KILL Forest Spiders" infoRange="85"/>
<POI MapID="19" xpos="-232.41" ypos="58.4289" zpos="451.282" type="legs.map.core.ashford.all.heartinfo" GUID="siRbxGkUkE2BBJ3d0BtxKw==" info="SQUISH Spider Egg Sacs (Weapon Swap) & KILL Forest Spiders" infoRange="40"/>
<POI MapID="19" xpos="229.217" ypos="74.2752" zpos="517.578" type="legs.map.core.ashford.all.heartinfo" GUID="eYHB5hJSFUa7o+PwKm8euA==" info="KILL Harpies & DESTROY Harpy Nests

EVENT Recover Stolen Supply Containers" infoRange="100"/>
<POI MapID="19" xpos="527.602" ypos="35.2963" zpos="453.614" type="legs.map.core.ashford.all.heartinfo" GUID="6XRMr6POEUevS3amlOaCfw==" info="KILL Ghosts" infoRange="100"/>
<POI MapID="19" xpos="747.2" ypos="31.9117" zpos="498.301" type="legs.map.core.ashford.all.heartinfo" GUID="/Wv0hUKTCUimcksztchYnw==" info="REPAIR Blood Legion Flags & KILL Ghosts" infoRange="100"/>
<POI MapID="19" xpos="889.473" ypos="68.9664" zpos="531.664" type="legs.map.core.ashford.all.heartinfo" GUID="2Vf+NwyrPEqFTDW5iWV9PA==" info="REPAIR Blood Legion Flags & KILL Ghosts" infoRange="58"/>
<POI MapID="19" xpos="1081.29" ypos="15.5622" zpos="362.506" type="legs.map.core.ashford.all.heartinfo" GUID="bKxjeIGMP06I5xBIz20q5g==" info="KILL Ogres & BURN Ogre Territory Markers

DESTROY Territory Markers, Ogre Prisons, Pet Houses, Weapon Racks & Supplies" infoRange="28"/>
<POI MapID="19" xpos="1147.42" ypos="39.6089" zpos="252.193" type="legs.map.core.ashford.all.heartinfo" GUID="mzGWlytjLEWvspvmfPTUJA==" info="KILL Ogres

DESTROY Territory Markers, Pet Houses, Weapon Racks & Supplies" infoRange="100"/>
<POI MapID="19" xpos="1004.91" ypos="7.87672" zpos="-314.472" type="legs.map.core.ashford.all.heartinfo" GUID="IJZHOClqIUa4z8xIKxXqRQ==" info="KILL Skale for Skale Oil & SET Skale Traps

PICK UP Skale Eggs & Skale Food Piles and Hand in to Researcher Irkz (Heart)" infoRange="92"/>
<POI MapID="19" xpos="1085.69" ypos="2.37687" zpos="-433.175" type="legs.map.core.ashford.all.heartinfo" GUID="aJbouq01mUed9QcuUNKvbA==" info="KILL Skale for Skale Oil & SET Skale Traps

PICK UP Skale Eggs & Skale Food Piles and Hand in to Researcher Irkz (Heart)" infoRange="52"/>
<POI MapID="19" xpos="704.985" ypos="21.8693" zpos="-477.982" type="legs.map.core.ashford.all.heartinfo" GUID="agdNLv8EDEa+31/TzkSfqQ==" info="SHAKE Suspicious Bush & KILL Separatists

BURN Separatist Plans & DESTROY Separatist Catapult" infoRange="100"/>
<POI MapID="19" xpos="602.15" ypos="6.03297" zpos="-127.898" type="legs.map.core.ashford.all.heartinfo" GUID="Pq0tpV7oLUCMQAnIi8vCIw==" info="KILL Rock Drakes" infoRange="52"/>
<POI MapID="19" xpos="600.725" ypos="0.514706" zpos="-231.161" type="legs.map.core.ashford.all.heartinfo" GUID="HfcpEtsUw0CYL0EXOwt+Yw==" info="TALK to Sesto Headsplitter (Heart)

2. Experimental? Sign me up!

USE Grenades on Charr Target Dummies & Drakes" infoRange="50"/>
<POI MapID="19" xpos="624.811" ypos="0.436221" zpos="-272.375" type="legs.map.core.ashford.all.heartinfo" GUID="yX6QRNb5WU+Lnonn1vdL0A==" info="FIX Malfunctioning Equipment & KILL Tar Elemental" infoRange="10"/>
<POI MapID="19" xpos="568.123" ypos="0.142077" zpos="-284.542" type="legs.map.core.ashford.all.heartinfo" GUID="icdvAZTZkEuXMCy1FYPsPA==" info="FIX Malfunctioning Equipment & KILL Tar Elemental" infoRange="15"/>
<POI MapID="19" xpos="497.956" ypos="0.453975" zpos="-303.906" type="legs.map.core.ashford.all.heartinfo" GUID="uLu5MXOf3kC7LF0kk9y0CQ==" info="FIX Malfunctioning Equipment & KILL Tar Elemental" infoRange="38"/>
<POI MapID="19" xpos="97.3609" ypos="13.8239" zpos="-61.7002" type="legs.map.core.ashford.all.heartinfo" GUID="06jpTJo5BUixFN5CsfqV2w==" info="PICK UP Ascalonian Weapons & KILL Ghosts" infoRange="100"/>
<POI MapID="19" xpos="-67.8593" ypos="19.2956" zpos="-29.1293" type="legs.map.core.ashford.all.heartinfo" GUID="zDk33L+e2EuZm1XZi/j4nw==" info="PICK UP Ascalonian Weapons & KILL Ghosts

LIGHT Torches" infoRange="70"/>
<POI MapID="19" xpos="-227.721" ypos="64.3625" zpos="-174.408" type="legs.map.core.ashford.all.heartinfo" GUID="nEa8t1wp9UeLf/gJPYIs/g==" info="IF the Arena is working KILL Mobs

Otherwise...

TALK to Paenula Drakecatcher (Heart) to get a Rifle
Get Crimson Moa to below 50% Health, use 4. Net to repeatedly capture it" infoRange="100"/>
<Trail type="legs.map.core.ashford.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford Hearts 1.trl" color="FFFF00"/>
<Trail type="legs.map.core.ashford.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford Hearts 2.trl" color="FFFF00"/>
<Trail type="legs.map.core.ashford.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Plains of Ashford Hearts 3.trl" color="FFFF00"/>
<!-- Diessa Plateau -->
<Trail type="legs.map.core.diessa.all.number.1" trailData="Data/LadyElyssa/Map Completion/Diessa 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.diessa.all.number.2" trailData="Data/LadyElyssa/Map Completion/Diessa 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.diessa.all.number.3" trailData="Data/LadyElyssa/Map Completion/Diessa 3.trl" color="00FFFF"/>
<Trail type="legs.map.core.diessa.all.number.4" trailData="Data/LadyElyssa/Map Completion/Diessa 4.trl" color="00FFFF"/>
<Trail type="legs.map.core.diessa.all.number.5" trailData="Data/LadyElyssa/Map Completion/Diessa 5.trl" color="00FFFF"/>
<Trail type="legs.map.core.diessa.all.number.6" trailData="Data/LadyElyssa/Map Completion/Diessa 6.trl" color="00FFFF"/>
<POI MapID="32" xpos="1148.54" ypos="39.6996" zpos="263.746" type="legs.map.core.diessa.all.mount.skyscale" GUID="2LtKPwhFE0e3qVpLYKhHVA=="/>
<Trail type="legs.map.core.diessa.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Diessa Hearts 1.trl" color="FFFF00"/>
<Trail type="legs.map.core.diessa.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Diessa Hearts 2.trl" color="FFFF00"/>
<Trail type="legs.map.core.diessa.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Diessa Hearts 3.trl" color="FFFF00"/>
<Trail type="legs.map.core.diessa.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Diessa Hearts 4.trl" color="FFFF00"/>
<POI MapID="32" xpos="-1002.33" ypos="66.3693" zpos="-555.339" type="legs.map.core.diessa.all" GUID="KqzmsbTwTUeRpUbM11CCAA==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="32" xpos="-1003.9" ypos="68.7371" zpos="-553.352" type="legs.map.core.diessa.all.wp" GUID="uoqGgCJPNE6v3IDNb/we5A==" iconFile="Data/LadyElyssa/Images/Do Not Enter.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="32" xpos="-764.481" ypos="45.1929" zpos="-626.663" type="legs.map.core.diessa.all.start" GUID="mQNzvtFrRkmOk3q+67N0tQ=="/>
<POI MapID="32" xpos="-832.048" ypos="48.5182" zpos="-606.725" type="legs.map.core.diessa.all.mount.skyscale" GUID="fGa219IQ1kKMyXcn4MvDdA=="/>
<POI MapID="32" xpos="-787.272" ypos="36.2005" zpos="-356.643" type="legs.map.core.diessa.all.heartinfo" GUID="W0o/lE0fUk2wgW9nSbaSGw==" info="LIGHT Torches, KILL Ghosts & DISTURB Rubble" infoRange="85"/>
<POI MapID="32" xpos="-815.234" ypos="45.7809" zpos="-230.247" type="legs.map.core.diessa.all.heartinfo" GUID="R4SqZ/XDtEGlzJqr5a6h2Q==" info="LIGHT Torches, KILL Ghosts & DISTURB Rubble" infoRange="54"/>
<POI MapID="32" xpos="-446.8" ypos="32.3179" zpos="-218.564" type="legs.map.core.diessa.all.heartinfo" GUID="CCVMvLL5XE6oyAc1dnQeIQ==" info="Tend to Cows, Chill for a moment and then repeat or TRY and Catch Bugs while you wait" infoRange="74"/>
<POI MapID="32" xpos="-394.047" ypos="35.1033" zpos="-217.69" type="legs.map.core.diessa.all.heartinfo" GUID="MyxZAXF8bEeLkSgMFcXxpg==" info="
/SIT with Lonely Cow" infoRange="2"/>
<POI MapID="32" xpos="-398.94" ypos="35.6905" zpos="-222.589" type="legs.map.core.diessa.all.heartinfo" GUID="6+NI9DXNeUe3c7bMbkMW8g==" info="
/BOW to Dignified Cow" infoRange="2"/>
<POI MapID="32" xpos="-403.172" ypos="36.0033" zpos="-225.753" type="legs.map.core.diessa.all.heartinfo" GUID="wNf/lBcCTUqYsULu4dSEjg==" info="
/THREATEN to Sleepy Cow" infoRange="2"/>
<POI MapID="32" xpos="-408.235" ypos="36.5503" zpos="-229.313" type="legs.map.core.diessa.all.heartinfo" GUID="Nu1TH0SJF02kgO6cD5QZsA==" info="
/CHEER to Depressed Cow" infoRange="2"/>
<POI MapID="32" xpos="-429.38" ypos="36.1513" zpos="-239.958" type="legs.map.core.diessa.all.heartinfo" GUID="jDtWCi3itUSyypTonhDiqA==" info="PICK UP Water Bucket from Fountain & 1. POUR WATER over Stinky Cows" infoRange="6"/>
<POI MapID="32" xpos="-591.669" ypos="30.7579" zpos="-435.691" type="legs.map.core.diessa.all.heartinfo" GUID="hk1cgFJvGUKwCqC4xx/4ZA==" info="REPAIR Refugee Sign Posts & DISARM Land Mines (amounts to 50% of Heart)

KILL Separatists

At Worst:
SEARCH Wreckage for Pieces of Scrap Metal
Gather Metal Bars
TALK to Tiga Fierceblade (Heart)" infoRange="80"/>
<POI MapID="32" xpos="-389.996" ypos="49.8689" zpos="-619.585" type="legs.map.core.diessa.all.heartinfo" GUID="g/r9Onleik+flp9uRg9utw==" info="KILL Separatists

DESTROY Gates, Separatis Tents

DESTROY Prisoner Gate & Revive/Free Soldier" infoRange="66"/>
<POI MapID="32" xpos="-148.033" ypos="45.1951" zpos="-654.273" type="legs.map.core.diessa.all.heartinfo" GUID="9m44/a4ffEq4Ce6iV8vveA==" info="TAKE Water Bucket to 1. Pour Water on Plants

REMOVE Weeds" infoRange="38"/>
<POI MapID="32" xpos="175.819" ypos="26.5422" zpos="-400.172" type="legs.map.core.diessa.all.heartinfo" GUID="JAbwNTsqv0WuUo2dQutUdA==" info="TALK to Dahala Lasherpaw for Hay to FEED Cows and Repeat

EVENT Drive off the Separatists" infoRange="95"/>
<POI MapID="32" xpos="730.523" ypos="25.087" zpos="-322.363" type="legs.map.core.diessa.all.heartinfo" GUID="1GeZyFIwEkmukE6DIPqnbw==" info="PICK UP Training Plank and use 1. Plank Swing on Practise Dummy and Repeat

KILL Skelk Lurkers

PICK UP Stick from Stick Barrel and 1. THROW STICK for Trained Skelk to fetch." infoRange="85"/>
<POI MapID="32" xpos="465.627" ypos="43.9868" zpos="-288.499" type="legs.map.core.diessa.all.heartinfo" GUID="fNRDPKZZjUOKdzMrTXEi6w==" info="SEARCH Suspicious Piles, DISARM Unexploded Bombs

KILL Separatist Saboteurs" infoRange="80"/>
<POI MapID="32" xpos="618.606" ypos="19.2753" zpos="191.403" type="legs.map.core.diessa.all.heartinfo" GUID="6k9XAj0GnEi/mhjKALf13w==" info="INTERACT with Bloodsaw Mill Tree Sapling (Weapon Swap x 2)

TAKE Tree Branch & INTERACT with Fire Pit

MOTIVATE Lazy Workers (weapon swap)

TAKE Explosives Kit and 2. Throw Grenade at Wasp Nests " infoRange="100"/>
<POI MapID="32" xpos="786.157" ypos="44.8346" zpos="477.969" type="legs.map.core.diessa.all.heartinfo" GUID="U2Ql8fkeW0a3L/0slRvUBw==" info="1 DISARM Flame Font, DESTROY Flame Turrets & Flame Legion Braziers

KILL Flame Legion" infoRange="80"/>
<POI MapID="32" xpos="870.826" ypos="44.4274" zpos="594.262" type="legs.map.core.diessa.all.heartinfo" GUID="vxUUsNST9EqEA9zA+YLKJQ==" info="2 DISARM Flame Font, DESTROY Flame Turrets & Flame Legion Braziers

KILL Flame Legion" infoRange="30"/>
<POI MapID="32" xpos="934.901" ypos="44.4973" zpos="517.302" type="legs.map.core.diessa.all.heartinfo" GUID="TM24CssluEWgAFGiqRp4KQ==" info="3 DISARM Flame Font, DESTROY Flame Turrets & Flame Legion Braziers

KILL Flame Legion" infoRange="50"/>
<POI MapID="32" xpos="931.597" ypos="53.2713" zpos="405.765" type="legs.map.core.diessa.all.heartinfo" GUID="cMb94xIda0eKmpHjOAWPaA==" info="4 DISARM Flame Font, DESTROY Flame Turrets & Flame Legion Braziers

KILL Flame Legion" infoRange="65"/>
<POI MapID="32" xpos="941.708" ypos="47.1146" zpos="550.798" type="legs.map.core.diessa.all.mount.springer" GUID="PrHCEj6tX0udLcA7Bxsg9g=="/>
<POI MapID="32" xpos="74.7695" ypos="7.54552" zpos="151.963" type="legs.map.core.diessa.all.heartinfo" GUID="12ex5ulJ4kCVRB6hL3kvNA==" info="1 TAKE Sample from Water Testing Kits & TALK to Stout Darkmind (Heart)

REPAIR Chemical Dispensers, KILL Skale & DESTROY Skale Nests" infoRange="84"/>
<POI MapID="32" xpos="55.1003" ypos="2.86748" zpos="264.495" type="legs.map.core.diessa.all.heartinfo" GUID="VZiO1MvG0kKW5Z7igeYC5Q==" info="2 TAKE Sample from Water Testing Kits & TALK to Stout Darkmind (Heart)

REPAIR Chemical Dispensers, KILL Skale & DESTROY Skale Nests" infoRange="30"/>
<POI MapID="32" xpos="199.961" ypos="-1.0469" zpos="312.388" type="legs.map.core.diessa.all.heartinfo" GUID="GEjZhF1Ajk+GxP3OTz+k9g==" info="3 TAKE Sample from Water Testing Kits & TALK to Stout Darkmind (Heart)

REPAIR Chemical Dispensers, KILL Skale & DESTROY Skale Nests" infoRange="88"/>
<POI MapID="32" xpos="205.83" ypos="26.8616" zpos="176.004" type="legs.map.core.diessa.all.heartinfo" GUID="7B4N5hdyqUOsBsjr98CUNQ==" info="4 TAKE Sample from Water Testing Kits & TALK to Stout Darkmind (Heart)

REPAIR Chemical Dispensers, KILL Skale & DESTROY Skale Nests" infoRange="60"/>
<POI MapID="32" xpos="-200.078" ypos="39.9714" zpos="141.142" type="legs.map.core.diessa.all.heartinfo" GUID="S1ousymfh0Cy7lYug3r/7Q==" info="KILL Ghosts, DESTROY Ghost Cannons & Trebuchet" infoRange="100"/>
<POI MapID="32" xpos="-228.518" ypos="95.1055" zpos="500.464" type="legs.map.core.diessa.all.heartinfo" GUID="aw35B4+OYUKprzjsNEBAgw==" info="KILL Dredge, REPAIR Drilling Machines, DETONATE Rock Piles

PICK UP Boulders & INTERACT with Small Dredge Holes

TALK to Lazy Miners" infoRange="100"/>
<POI MapID="32" xpos="-681.657" ypos="66.1979" zpos="217.194" type="legs.map.core.diessa.all.heartinfo" GUID="pu8LI3LbXEqT6/VCMbXC7A==" info="DEFEAT Azalus Poisontongue

TAKE from Meat Rack & TALK to Bottomless Stomach Soldiers

GRAB A DRINK from Ale Cart & TALK to Unquenchable Thirst Soldiers" infoRange="65"/>
<POI MapID="32" xpos="-747.36" ypos="63.1336" zpos="206.423" type="legs.map.core.diessa.all.mount.springer" GUID="44Pp3J6THkWx/lP17YvbkA=="/>
<POI MapID="32" xpos="-754.925" ypos="79.3881" zpos="207.247" type="legs.map.core.diessa.all.mount.skyscale" GUID="1rIpZM+NwE+067de93Z/xg=="/>
<POI MapID="32" xpos="-670.468" ypos="97.5306" zpos="569.299" type="legs.map.core.diessa.all.heartinfo" GUID="MfUYnRLjVkaIJ7ReQ2YsmQ==" info="KILL Dredge (skip Veterans), DESTROY Guard Towers, Sonic Cannons, Mining Machines" infoRange="100"/>
<POI MapID="32" xpos="-826.273" ypos="103.935" zpos="442.59" type="legs.map.core.diessa.all.heartinfo" GUID="ddmwRiQtBkCEl0CaDholLQ==" info="KILL Dredge (skip Veterans), DESTROY Guard Towers, Sonic Cannons, Mining Machines" infoRange="100"/>
<POI MapID="32" xpos="-868.084" ypos="121.944" zpos="592.261" type="legs.map.core.diessa.all.heartinfo" GUID="0qHDy3WG6kWMNM2YQqjjzA==" info="KILL Dredge (skip Veterans), DESTROY Guard Towers, Sonic Cannons, Mining Machines" infoRange="75"/>
<POI MapID="32" xpos="-949.432" ypos="115.856" zpos="488.534" type="legs.map.core.diessa.all.heartinfo" GUID="vmZ8Ef3eK0K0qoVa+4/5aw==" info="KILL Dredge (skip Veterans), DESTROY Guard Towers, Sonic Cannons, Mining Machines" infoRange="32"/>
<POI MapID="32" xpos="-717.528" ypos="31.0266" zpos="-538.015" type="legs.map.core.diessa.all.number.2" GUID="NflG83gk10OC7fDkGll/0g=="/>
<POI MapID="32" xpos="-732.411" ypos="31.6093" zpos="-236.74" type="legs.map.core.diessa.all.number.3" GUID="CxfYEnbzpkauoaT6HqXrYA=="/>
<POI MapID="32" xpos="810.486" ypos="37.8008" zpos="507.933" type="legs.map.core.diessa.all" GUID="MRc2ky9rnkOAakCr02ZkDg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="32" xpos="310.212" ypos="24.2535" zpos="-526.226" type="legs.map.core.diessa.all.mount.springer" GUID="XXgvqO1xekqh6dnEi5x9sA=="/>
<POI MapID="32" xpos="336.568" ypos="65.2436" zpos="-545.931" type="legs.map.core.diessa.all.mount.bof" GUID="cOrjmc4IaUCdVoXAcqCD1w=="/>
<POI MapID="32" xpos="866.438" ypos="17.6704" zpos="-392.885" type="legs.map.core.diessa.all.mount.springer" GUID="FUKukMqGREW0vSI5ht0cOg=="/>
<POI MapID="32" xpos="928.365" ypos="35.3475" zpos="-345.148" type="legs.map.core.diessa.all.mount.springer" GUID="t/2EetG7O0+TNeyD/emFMA=="/>
<POI MapID="32" xpos="638.764" ypos="26.3394" zpos="-269.768" type="legs.map.core.diessa.all.mount.springer" GUID="apk2IgayLkyJNaPzQbkZWg=="/>
<POI MapID="32" xpos="597.302" ypos="51.8276" zpos="-242.149" type="legs.map.core.diessa.all.mount.skyscale" GUID="F7V8BjMrG0eszetAY09WlA=="/>
<POI MapID="32" xpos="622.887" ypos="19.6581" zpos="187.171" type="legs.map.core.diessa.all.mount.skyscale" GUID="2blo8m2p1U+9FWnyW//DFA=="/>
<POI MapID="32" xpos="387.978" ypos="37.6176" zpos="567.161" type="legs.map.core.diessa.all.mount.skyscale" GUID="Y7DZH//li028mBMuexT+qQ=="/>
<POI MapID="32" xpos="383.493" ypos="1.19803" zpos="321.336" type="legs.map.core.diessa.all.number.4" GUID="NnEgSEEcvUaXZxnVteJdAg=="/>
<POI MapID="32" xpos="196.872" ypos="38.1135" zpos="-78.0938" type="legs.map.core.diessa.all.mount.springer" GUID="lWeOCAg6Pk6OV/ApFs7Usw=="/>
<POI MapID="32" xpos="-413.727" ypos="72.3516" zpos="444.077" type="legs.map.core.diessa.all.mount.springer" GUID="BgY2mTv4sUWp4uWGnaXvpw=="/>
<POI MapID="32" xpos="-415.565" ypos="67.5818" zpos="434.428" type="legs.map.core.diessa.all.number.5" GUID="eMGIQ1g9cUijFatiCMPmqQ=="/>
<POI MapID="32" xpos="-874.544" ypos="83.88" zpos="248.637" type="legs.map.core.diessa.all.mount.springer" GUID="+K6D2/G4P0Cie0kR4kY7qQ=="/>
<POI MapID="32" xpos="515.465" ypos="39.5579" zpos="-235.561" type="legs.map.core.diessa.all.mount.skyscale" GUID="aejSwVCHO0mfk7FutG7g4w=="/>
<POI MapID="32" xpos="-951.373" ypos="100.739" zpos="217.13" type="legs.map.core.diessa.all.number.6" GUID="Okfl5gW1MU6pzA0zOBN1LQ=="/>
<POI MapID="32" xpos="-1004.72" ypos="123.25" zpos="254.325" type="legs.map.core.diessa.all.finish" GUID="1GIBtxyn/E623htw9respg=="/>
<POI MapID="32" xpos="-260.76" ypos="45.8596" zpos="-558.719" type="legs.map.core.diessa.all.mount.springer" GUID="JgeSgw61Pk62PF7/yStArQ=="/>
<POI MapID="32" xpos="386.585" ypos="53.2909" zpos="-560.626" type="legs.map.core.diessa.all.glider.medium" GUID="1GYiQ6Zl5EmJ4syIoAU+uA=="/>
<POI MapID="32" xpos="466.135" ypos="4.47846" zpos="520.984" type="legs.map.core.diessa.all.mount.springer" GUID="EsvF3vlo8kGVMJHVyTt+GQ=="/>
<POI MapID="32" xpos="459.721" ypos="17.795" zpos="529.403" type="legs.map.core.diessa.all.mount.skyscale" GUID="/OwwZsZLO0mGgon/GaZCOQ=="/>
<POI MapID="32" xpos="357.657" ypos="-0.443064" zpos="312.29" type="legs.map.core.diessa.all.mount.skimmer" GUID="DJVFvSTHG0Kf9dytBUsnPA=="/>
<POI MapID="32" xpos="-1002.37" ypos="67.3351" zpos="-555.435" type="legs.map.core.diessa.all.wp" GUID="gTTmIIpzaUuNxS7h/Fs6SQ==" copy="[&BN4AAAA=]" copy-message="Nolan Waypoint"/>
<POI MapID="32" xpos="-993.384" ypos="91.2776" zpos="-166.245" type="legs.map.core.diessa.all.wp" GUID="uMhiQR7XHESbTkTKomkYQA==" copy="[&BF4BAAA=]" copy-message="Oldgate Waypoint"/>
<POI MapID="32" xpos="319.28" ypos="63.7101" zpos="573.433" type="legs.map.core.diessa.all.wp" GUID="x4gGyoU8wEKEey6Qee95Sw==" copy="[&BEIEAAA=]" copy-message="Blackblade Waypoint"/>
<POI MapID="32" xpos="-490.131" ypos="128.182" zpos="576.943" type="legs.map.core.diessa.all.wp" GUID="KR9P9dIeJE27/A5Q1InLcA==" copy="[&BMQDAAA=]" copy-message="Bloodcliff Waypoint"/>
<POI MapID="32" xpos="-799.221" ypos="88.7415" zpos="395.039" type="legs.map.core.diessa.all.wp" GUID="h3UrASpgV0SZLNTQ7gS0SQ==" copy="[&BNkAAAA=]" copy-message="Return to Charrgate Haven Waypoint once Heart is complete."/>
<POI MapID="32" xpos="935.408" ypos="60.5735" zpos="557.138" type="legs.map.core.diessa.all.wp" GUID="0t725rcpR0mom7QMKTPRZA==" copy="[&BGIBAAA=]" copy-message="Incendio Waypoint"/>
<POI MapID="32" xpos="-592.258" ypos="91.5079" zpos="-362.225" type="legs.map.core.diessa.all" GUID="d4ibDc4tGEavSuaWsZnvDQ==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="32" xpos="-717.606" ypos="29.2905" zpos="-527.808" type="legs.map.core.diessa.all.mount.raptor" GUID="FIqz57ydd0WGXTfYryFyGw=="/>
<POI MapID="32" xpos="-739.594" ypos="32.0569" zpos="-244.62" type="legs.map.core.diessa.all.mount.jackal" GUID="yskeVX/gJkSGVGKYbYVFpw=="/>
<POI MapID="32" xpos="-854.321" ypos="46.4356" zpos="-143.541" type="legs.map.core.diessa.all.mount.jackal" GUID="oJZV9LEMPkaV9orpMZA2Aw=="/>
<POI MapID="32" xpos="-725.42" ypos="32.1586" zpos="-229.172" type="legs.map.core.diessa.all.mount.beetle" GUID="CqVOVteNm0KkYsYFd/BPpg=="/>
<POI MapID="32" xpos="-526.953" ypos="45.7383" zpos="-24.5415" type="legs.map.core.diessa.all.mount.beetle" GUID="ASX4sQTufkGMkKpdr1GLYA=="/>
<POI MapID="32" xpos="-442.792" ypos="36.7769" zpos="-277.259" type="legs.map.core.diessa.all.mount.raptor" GUID="Bm1/72RG+k+9zgUvWyTu6g=="/>
<POI MapID="32" xpos="-552.057" ypos="36.607" zpos="-475.769" type="legs.map.core.diessa.all.mount.jackal" GUID="NgdiI1LR4EWNs3F0F3oqpw=="/>
<POI MapID="32" xpos="-524.55" ypos="57.2281" zpos="-567.833" type="legs.map.core.diessa.all.mount.jackal" GUID="1XceRWMINEy8oBS7oU1ijA=="/>
<POI MapID="32" xpos="-409.302" ypos="32.0161" zpos="-490.763" type="legs.map.core.diessa.all.mount.beetle" GUID="Yd7lQfkA+0S0jCe9a6Pnig=="/>
<POI MapID="32" xpos="-215.904" ypos="35.2266" zpos="-493.834" type="legs.map.core.diessa.all.mount.beetle" GUID="OyGNK1uZPECYgPJc5yMyMg=="/>
<POI MapID="32" xpos="-145.315" ypos="48.2227" zpos="-619.097" type="legs.map.core.diessa.all.mount.beetle" GUID="rv9QqkhQFkug9TggizB2Zw=="/>
<POI MapID="32" xpos="163.042" ypos="26.9058" zpos="-367.876" type="legs.map.core.diessa.all.mount.beetle" GUID="kqbxZtx5mE27Ge03gTZlJA=="/>
<POI MapID="32" xpos="450.884" ypos="25.4692" zpos="-581.884" type="legs.map.core.diessa.all.mount.raptor" GUID="IAc9mJwOdECB3N4qeFPoiQ=="/>
<POI MapID="32" xpos="824.083" ypos="-1.05635" zpos="-593.496" type="legs.map.core.diessa.all.mount.skimmer" GUID="QN6YBANLcEaVQtmnoiwDrA=="/>
<POI MapID="32" xpos="930.503" ypos="37.0289" zpos="-269.69" type="legs.map.core.diessa.all.mount.raptor" GUID="IQZDkS3Me0+4GNC4yEkQMQ=="/>
<POI MapID="32" xpos="925.806" ypos="39.2525" zpos="-190.524" type="legs.map.core.diessa.all.mount.beetle" GUID="EXLmRwkgs0KpNlCbbrW7vw=="/>
<POI MapID="32" xpos="781.225" ypos="20.2359" zpos="-334.583" type="legs.map.core.diessa.all.mount.raptor" GUID="taFuLD2W0UmNMjvOCUodBA=="/>
<POI MapID="32" xpos="518.829" ypos="24.1431" zpos="129.594" type="legs.map.core.diessa.all.mount.raptor" GUID="fCY7SOhxJ0mDG7vG6Vg+gw=="/>
<POI MapID="32" xpos="829.891" ypos="27.8856" zpos="166.39" type="legs.map.core.diessa.all.mount.beetle" GUID="aPwOiF6fC0mkrymojB84gQ=="/>
<POI MapID="32" xpos="726.186" ypos="34.8149" zpos="406.506" type="legs.map.core.diessa.all.mount.beetle" GUID="rgxAy+aSRk+N/zoV9SwZOw=="/>
<POI MapID="32" xpos="403.088" ypos="-0.484493" zpos="336.21" type="legs.map.core.diessa.all.mount.skimmer" GUID="LfzsI9Z1rEu3jbbuyfP7FA=="/>
<POI MapID="32" xpos="437.499" ypos="1.04176" zpos="453.509" type="legs.map.core.diessa.all.mount.jackal" GUID="G/PSHJwMI0aBL1Cl/2MPBw=="/>
<POI MapID="32" xpos="148.579" ypos="2.32791" zpos="68.8939" type="legs.map.core.diessa.all.mount.jackal" GUID="t2KJuaYDB0mhuRPeETIZ6Q=="/>
<POI MapID="32" xpos="162.529" ypos="38.8092" zpos="-152.767" type="legs.map.core.diessa.all.mount.beetle" GUID="+wpC1gulrEaRG2kI7dWZsQ=="/>
<POI MapID="32" xpos="-149.171" ypos="57.6924" zpos="-75.1324" type="legs.map.core.diessa.all.mount.jackal" GUID="Tx2GzyznY0CJr5ja02oU4g=="/>
<POI MapID="32" xpos="-192.674" ypos="0.0587275" zpos="93.236" type="legs.map.core.diessa.all.mount.jackal" GUID="hQlxTL0nqkSEIUIwi7oXHg=="/>
<POI MapID="32" xpos="-186.581" ypos="42.9992" zpos="220.568" type="legs.map.core.diessa.all.mount.beetle" GUID="BM0hz1V1YkSXC37rknTk7g=="/>
<POI MapID="32" xpos="43.4181" ypos="38.2182" zpos="402.425" type="legs.map.core.diessa.all.mount.jackal" GUID="jDTH5OIf6UapFjwNwUvFsA=="/>
<POI MapID="32" xpos="-326.636" ypos="85.7662" zpos="462.237" type="legs.map.core.diessa.all.mount.raptor" GUID="dt6FE6yyLkOssZmi9G36Sw=="/>
<POI MapID="32" xpos="-424.541" ypos="67.6957" zpos="431.073" type="legs.map.core.diessa.all.mount.beetle" GUID="0T2JuyO0G069HLflgKD1zw=="/>
<POI MapID="32" xpos="-957.837" ypos="103.958" zpos="219.673" type="legs.map.core.diessa.all.mount.jackal" GUID="sCoQ2X9sL06LuvJFOkszjA=="/>
<POI MapID="32" xpos="-996.894" ypos="115.876" zpos="208.688" type="legs.map.core.diessa.all.mount.jackal" GUID="a5X7JwTna0+1tV6H/Mm3FA=="/>
<POI MapID="32" xpos="-905.35" ypos="89.9328" zpos="235.975" type="legs.map.core.diessa.all.mount.jackal" GUID="apfYzC2W0kaCKLeAcqcBtQ=="/>
<POI MapID="32" xpos="96.3709" ypos="0.300013" zpos="154.701" type="legs.map.core.diessa.all.mount.raptor" GUID="+ap0tI6TK0yCnpCRMyYJcg=="/>
<POI MapID="32" xpos="96.3709" ypos="2.300013" zpos="154.701" type="legs.map.core.diessa.all.mount.raptor.leap" GUID="ZGA0Rm21BkemHrEMZwiHvw=="/>
<Trail type="legs.map.core.diessa.wp" trailData="Data/LadyElyssa/Map Completion/Diessa Plateau WP.trl" color="CC66FF"/>
<POI MapID="32" xpos="-764.481" ypos="45.1929" zpos="-626.663" type="legs.map.core.diessa.wp.start" GUID="0P+jLoBRHUmeeU26TryPSw=="/>
<POI MapID="32" xpos="-184.101" ypos="44.6422" zpos="-6.83049" type="legs.map.core.diessa.wp.wp" GUID="mCnfpKsEvEeBV8nB6A72Ww==" copy="[&BN4AAAA=]" copy-message="Nolan Waypoint"/>
<POI MapID="32" xpos="-715.559" ypos="31.2347" zpos="-538.438" type="legs.map.core.diessa.wp.number.2" GUID="UyssLda3gkqp+5BBUJrl9g=="/>
<POI MapID="32" xpos="242.958" ypos="51.7383" zpos="376.351" type="legs.map.core.diessa.wp.mount.skyscale" GUID="Q1xlsSOyqECksgOLD9QVQA=="/>
<POI MapID="32" xpos="-1004.72" ypos="123.25" zpos="254.325" type="legs.map.core.diessa.wp.finish" GUID="nTKknBfKukSCV3JcLDtsWA=="/>
<Trail type="legs.map.core.fields.all.number.1" trailData="Data/LadyElyssa/Map Completion/Fields 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.fields.all.number.2" trailData="Data/LadyElyssa/Map Completion/Fields 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.fields.all.number.3" trailData="Data/LadyElyssa/Map Completion/Fields 3.trl" color="00FFFF"/>
<POI MapID="21" xpos="-594.755" ypos="47.0609" zpos="-633.996" type="legs.map.core.fields.all.heartinfo" GUID="ixtpCiM/pkaFZ01SLaygPw==" info="REMOVE Separatist Propaganda

" infoRange="60"/>
<POI MapID="21" xpos="-480.7" ypos="56.1528" zpos="-619.466" type="legs.map.core.fields.all.heartinfo" GUID="EImSTJvCuE6ZC2P5fuqCTg==" info="REMOVE Separatist Propaganda

" infoRange="60"/>
<POI MapID="21" xpos="-389.3" ypos="69.4613" zpos="-583.728" type="legs.map.core.fields.all.heartinfo" GUID="NHq+rWJnDk+YF1skkPasJw==" info="REMOVE Separatist Propaganda

KNOCK on Suspicious Doors" infoRange="60"/>
<POI MapID="21" xpos="-807.577" ypos="66.214" zpos="-693.253" type="legs.map.core.fields.all.heartinfo" GUID="mWhdYtLwBUSK+C7BB1t25A==" info="TALK to Trainees for Sparring

REPAIR Damaged Turrets" infoRange="75"/>
<POI MapID="21" xpos="-825.72" ypos="59.2675" zpos="-549.148" type="legs.map.core.fields.all.heartinfo" GUID="G8pF/Md2nE6OwMbb49n5tQ==" info="KILL Skritt

REPAIR Damaged Thumper Turrets

EVENT Stop Skritt Thieves" infoRange="75"/>
<POI MapID="21" xpos="-227.159" ypos="28.0055" zpos="-748.718" type="legs.map.core.fields.all.heartinfo" GUID="WcAT8vnO10OlDM/joa6z/Q==" info="INVESTIGATE Shifting Rocks

KILL Cliff Bats, Skritt & KILL Earth Elementals

MOTIVATE Lazy Miners" infoRange="100"/>
<POI MapID="21" xpos="342.113" ypos="33.3775" zpos="-125.927" type="legs.map.core.fields.all.heartinfo" GUID="2LYm/juDykqHObmiNJ4N7g==" info="KILL Ogres" infoRange="80"/>
<POI MapID="21" xpos="334.887" ypos="56.6364" zpos="-256.507" type="legs.map.core.fields.all.heartinfo" GUID="0zEX5M8XIEmd3q/NxBVQxQ==" info="KILL Ogres

DESTROY Ogre Weaponrack

SABOTAGE Ogre Food Supplies" infoRange="55"/>
<POI MapID="21" xpos="-210.372" ypos="14.2059" zpos="-38.0866" type="legs.map.core.fields.all.heartinfo" GUID="NyLC4wNiiU+cbYCYbk6FQg==" info="KILL Renegades & Separatists" infoRange="100"/>
<POI MapID="21" xpos="-670.005" ypos="9.62855" zpos="-92.5954" type="legs.map.core.fields.all.heartinfo" GUID="+mayS12xjEi96hviMaORVA==" info="SEARCH Suspicious Bush

KILL Griffons, Wolves, Separatists" infoRange="100"/>
<POI MapID="21" xpos="-561.519" ypos="0.473191" zpos="31.4417" type="legs.map.core.fields.all.heartinfo" GUID="/PhB+sbAHUSh2CXeBp2anw==" info="KILL Separatists" infoRange="65"/>
<POI MapID="21" xpos="-712.921" ypos="29.1204" zpos="546.114" type="legs.map.core.fields.all.heartinfo" GUID="XmyJG1giXEasGzSHvBK5Qw==" info="KILL Branded

PUMP Water Sampler

ACTIVATE Experimental Capacitor" infoRange="100"/>
<POI MapID="21" xpos="-720.649" ypos="41.5124" zpos="715.101" type="legs.map.core.fields.all.heartinfo" GUID="tCVnWbTeqUKMH4kn+q2ixw==" info="KILL Branded

ACTIVATE Experimental Capacitor" infoRange="62"/>
<POI MapID="21" xpos="-832.525" ypos="65.0579" zpos="705.084" type="legs.map.core.fields.all.heartinfo" GUID="fFqTJ4P1NkabVxJMdm7nLA==" info="KILL Branded

ACTIVATE Experimental Capacitor" infoRange="55"/>
<POI MapID="21" xpos="-618.062" ypos="47.3407" zpos="747.879" type="legs.map.core.fields.all.heartinfo" GUID="ZclJvt6YL0Wglu34rmPe7Q==" info="PUMP Water Sampler" infoRange="47"/>
<POI MapID="21" xpos="-503.314" ypos="-21.184" zpos="661.817" type="legs.map.core.fields.all.heartinfo" GUID="MJXNgSFd0Eu6KgkPHPa2qQ==" info="KILL Branded

SMASH Crystal Formations" infoRange="75"/>
<POI MapID="21" xpos="-427.757" ypos="5.34023" zpos="564.515" type="legs.map.core.fields.all.heartinfo" GUID="wMtI2ajtOU+D025kiVI4xA==" info="KILL Branded" infoRange="50"/>
<POI MapID="21" xpos="30.6098" ypos="29.496" zpos="784.955" type="legs.map.core.fields.all.heartinfo" GUID="LW7jp4V9RkGVXQrHPMi3dw==" info="KILL Renegades

DESTROY Renegade Supplies & Renegade Mortars

TAKE Renegade Battle Plans" infoRange="20"/>
<POI MapID="21" xpos="146.862" ypos="15.3346" zpos="814.72" type="legs.map.core.fields.all.heartinfo" GUID="fOijSfmlgUy436RrjyySmA==" info="KILL Renegades

TAKE Renegade Battle Plans

DESTROY Prison Cage" infoRange="100"/>
<POI MapID="21" xpos="155.04" ypos="11.939" zpos="87.4778" type="legs.map.core.fields.all.heartinfo" GUID="yCskZeLYKkq+Qs6CsjC3Jg==" info="SMASH Angry Wasp Nests & KILL Wasps

INTERACT with Suspicious Barrels" infoRange="98"/>
<POI MapID="21" xpos="51.0171" ypos="9.44462" zpos="206.552" type="legs.map.core.fields.all.heartinfo" GUID="Cx9TUjZof0aBh9qg+MYcbw==" info="INTERACT with Suspicious Barrels

KILL Separatists" infoRange="60"/>
<POI MapID="21" xpos="277.922" ypos="10.2807" zpos="322.696" type="legs.map.core.fields.all.heartinfo" GUID="kuKzdUPv2kuPbaM8WZdB/A==" info="TALK with Training Soldiers (repeats)

REPAIR Broken Charr Mortars

RELOAD Exploded Charr Mines" infoRange="100"/>
<POI MapID="21" xpos="737.41" ypos="11.4911" zpos="652.376" type="legs.map.core.fields.all.heartinfo" GUID="HR/WoPCpu0CaSs0vzTKAwA==" info="KILL Harpies

KILL Griffons

DESTROY Harpy Eggs

INVESTIGATE Downed Brown Cow" infoRange="100"/>
<POI MapID="21" xpos="543.606" ypos="8.70015" zpos="490.215" type="legs.map.core.fields.all.number.3" GUID="8ag4B7oVlk+1DETqRazTvg=="/>
<POI MapID="21" xpos="197.736" ypos="36.2247" zpos="-801.407" type="legs.map.core.fields.all.heartinfo" GUID="yflcMAinWkaQTIf68wYQ9A==" info="TALK to Vanguard Scout Holt (Heart)" infoRange="75"/>
<POI MapID="21" xpos="-440.307" ypos="65.009" zpos="-278.167" type="legs.map.core.fields.all.glider.medium" GUID="NCPrpZ83Tk62yHiErOVI0w=="/>
<POI MapID="21" xpos="-536.075" ypos="45.4464" zpos="-170.514" type="legs.map.core.fields.all.glider.medium" GUID="qpWZCbFS0kiUIrCq7931hw=="/>
<POI MapID="21" xpos="-644.206" ypos="33.6305" zpos="728.35" type="legs.map.core.fields.all.glider.medium" GUID="DayxKlhNNUeBAP0/nhj4Qg=="/>
<POI MapID="21" xpos="-340.248" ypos="33.355" zpos="595.207" type="legs.map.core.fields.all.mount.springer" GUID="rr/KI68ZH0uh1Vow5Vgd5g=="/>
<POI MapID="21" xpos="-325.108" ypos="55.3083" zpos="593.04" type="legs.map.core.fields.all.mount.skyscale" GUID="xg8jlW/CHEejT4PW7ayCjg=="/>
<POI MapID="21" xpos="4.73406" ypos="23.2205" zpos="779.715" type="legs.map.core.fields.all.mount.springer" GUID="u0gEedXxjEGQpSPfKjDuWA=="/>
<POI MapID="21" xpos="-570.805" ypos="129.692" zpos="-806.609" type="legs.map.core.fields.all.glider.medium" GUID="5GquDDGFgU++B2EZ/14rOg=="/>
<POI MapID="21" xpos="172.102" ypos="44.9828" zpos="-731.479" type="legs.map.core.fields.all.glider.medium" GUID="NoNwbyivHkWIpqcpHN8byA=="/>
<POI MapID="21" xpos="552.146" ypos="42.7945" zpos="-594.395" type="legs.map.core.fields.all.mount.springer" GUID="M1cFzewzcEya1e6lfhg+Rw=="/>
<POI MapID="21" xpos="639.159" ypos="81.0871" zpos="-635.197" type="legs.map.core.fields.all.mount.springer" GUID="m4HyJ4Un0kWX+S57zCSdPg=="/>
<POI MapID="21" xpos="690.874" ypos="113.298" zpos="-565.8" type="legs.map.core.fields.all.glider.medium" GUID="xhyHwv3WL0ar5UYJhdDZEg=="/>
<POI MapID="21" xpos="720.772" ypos="50.8076" zpos="-450.346" type="legs.map.core.fields.all.mount.springer" GUID="Rl95eErDDUWWDVRzpoup9Q=="/>
<POI MapID="21" xpos="723.606" ypos="77.1039" zpos="-434.624" type="legs.map.core.fields.all.mount.skyscale" GUID="qMiGshbUA0a0pZQ/qDKVAg=="/>
<POI MapID="21" xpos="646.049" ypos="45.4408" zpos="-300.101" type="legs.map.core.fields.all.mount.skyscale" GUID="lfx4KT+mZUiYTKxhM+ahOA=="/>
<POI MapID="21" xpos="285.038" ypos="53.8382" zpos="-239.712" type="legs.map.core.fields.all.mount.springer" GUID="0ga8jAl1sk2tFcr3kePdFQ=="/>
<POI MapID="21" xpos="267.452" ypos="59.4312" zpos="-230.691" type="legs.map.core.fields.all.mount.skyscale" GUID="FdM97JbvqUu420D8rYliqw=="/>
<POI MapID="21" xpos="200.516" ypos="48.1411" zpos="-193.19" type="legs.map.core.fields.all.glider.medium" GUID="ReQ8ygCmk0O97XjZCjnGYg=="/>
<POI MapID="21" xpos="290.059" ypos="7.31771" zpos="302.447" type="legs.map.core.fields.all.mount.skyscale" GUID="i8QhSeWvPUSPvR+oVcSe0A=="/>
<POI MapID="21" xpos="394.579" ypos="58.1447" zpos="236.686" type="legs.map.core.fields.all.glider.medium" GUID="38PvzlAig0mrH1sQ19AyJw=="/>
<POI MapID="21" xpos="-686.162" ypos="68.8824" zpos="-377.819" type="legs.map.core.fields.all.mount.beetle" GUID="4soerEPCykKz7P3V/vijdQ=="/>
<POI MapID="21" xpos="-441.67" ypos="60.9601" zpos="-259.007" type="legs.map.core.fields.all.mount.raptor" GUID="Xsmp/8jfsUKoemWvoFuEjA=="/>
<POI MapID="21" xpos="-443.94" ypos="58.9949" zpos="-255.499" type="legs.map.core.fields.all.mount.raptor.leap" GUID="Wz9MJKAxUEuqpbofW7UvfA=="/>
<POI MapID="21" xpos="-468.264" ypos="49.2007" zpos="-210.381" type="legs.map.core.fields.all.mount.raptor.leap" GUID="2YFoGKnLwEOxnX29nNOB1A=="/>
<POI MapID="21" xpos="-708.299" ypos="9.87897" zpos="-119.892" type="legs.map.core.fields.all.mount.jackal" GUID="lxnIDak+EkacUX8EIl9Yzg=="/>
<POI MapID="21" xpos="-549.724" ypos="9.20073" zpos="56.6425" type="legs.map.core.fields.all.mount.beetle" GUID="GEq9XWfRL0GfWhIlDmFOxQ=="/>
<POI MapID="21" xpos="-738.574" ypos="27.4232" zpos="603.899" type="legs.map.core.fields.all.mount.jackal" GUID="vZ9HlwjZJ0u8U5LalDP6Vg=="/>
<POI MapID="21" xpos="-773.701" ypos="41.5967" zpos="704.635" type="legs.map.core.fields.all.mount.beetle" GUID="nW1tWgqbQkGtZgYMhy+DmA=="/>
<POI MapID="21" xpos="-837.482" ypos="62.1478" zpos="832.281" type="legs.map.core.fields.all.mount.beetle" GUID="2B3sJFev7kiSezpso45qzg=="/>
<POI MapID="21" xpos="-449.654" ypos="0.798386" zpos="606.721" type="legs.map.core.fields.all.mount.jackal" GUID="Uvh0wUmppUWNiktqMjezWw=="/>
<POI MapID="21" xpos="-189.679" ypos="10.0634" zpos="492.824" type="legs.map.core.fields.all.mount.beetle" GUID="Tg4jiJ1TMEqofNd4c4nqYg=="/>
<POI MapID="21" xpos="-520.182" ypos="59.2074" zpos="-378.783" type="legs.map.core.fields.all.mount.beetle" GUID="Vt7CkqCaK0yt8O78uBuOFg=="/>
<POI MapID="21" xpos="-385.116" ypos="69.3832" zpos="-640.03" type="legs.map.core.fields.all.mount.raptor" GUID="06u4Xw8q2kaTH/yAdblXlQ=="/>
<POI MapID="21" xpos="-175.231" ypos="18.4171" zpos="-748.062" type="legs.map.core.fields.all.mount.beetle" GUID="2yOrfKiVrE6pBaE3hhhgKw=="/>
<POI MapID="21" xpos="193.84" ypos="31.6976" zpos="-783.44" type="legs.map.core.fields.all.mount.beetle" GUID="myPVNHEH4EOEFIO/Y8TVXA=="/>
<POI MapID="21" xpos="341.363" ypos="37.2298" zpos="-565.889" type="legs.map.core.fields.all.mount.beetle" GUID="mNNOUaZV1E2XuXzj7kVS5w=="/>
<POI MapID="21" xpos="664.556" ypos="92.9726" zpos="-633.165" type="legs.map.core.fields.all.mount.jackal" GUID="ryI+i1bX/UeHlPoaYDQcGw=="/>
<POI MapID="21" xpos="619.761" ypos="23.5318" zpos="-98.0061" type="legs.map.core.fields.all.mount.beetle" GUID="/RkPgGjDcEqmGcdxPO/CtQ=="/>
<POI MapID="21" xpos="74.6641" ypos="4.26855" zpos="178.996" type="legs.map.core.fields.all.mount.jackal" GUID="/8S31iqykk20kS0EVk/hSQ=="/>
<POI MapID="21" xpos="363.526" ypos="7.52096" zpos="370.628" type="legs.map.core.fields.all.mount.raptor" GUID="pYW+QHJHtkazerXDdUVACA=="/>
<POI MapID="21" xpos="436.877" ypos="0.624187" zpos="511.16" type="legs.map.core.fields.all.mount.jackal" GUID="zVYZan2wgEydds2Jj1c2RA=="/>
<POI MapID="21" xpos="623.851" ypos="12.9157" zpos="493.394" type="legs.map.core.fields.all.mount.beetle" GUID="4Tb4hq9AIUiXSNV8pXEqJQ=="/>
<POI MapID="21" xpos="548.516" ypos="5.61877" zpos="506.586" type="legs.map.core.fields.all.mount.beetle" GUID="IAmdAmfJsUK9KgvuyvbZ3A=="/>
<POI MapID="21" xpos="-714.785" ypos="59.7127" zpos="-767.452" type="legs.map.core.fields.all.mount.skyscale" GUID="d79M+BnbKkO+iS3kyZJ4xg=="/>
<POI MapID="21" xpos="197.192" ypos="36.798" zpos="-803.634" type="legs.map.core.fields.all.mount.springer" GUID="0bR91vYLQ0mYtpuayhv/uw=="/>
<POI MapID="21" xpos="252.894" ypos="27.9277" zpos="-697.659" type="legs.map.core.fields.all.mount.springer" GUID="u/6VdtaYwkOytjNJjBFR8g=="/>
<POI MapID="21" xpos="235.604" ypos="33.4391" zpos="-703.784" type="legs.map.core.fields.all.mount.skyscale" GUID="Qaaj1on4p02r5dFFpxJfRg=="/>
<POI MapID="21" xpos="-382.596" ypos="75.3818" zpos="-863.857" type="legs.map.core.fields.all.mount.skyscale" GUID="gbe4neTByEGutgvy+JtOxA=="/>
<POI MapID="21" xpos="10.2947" ypos="17.1413" zpos="-194.202" type="legs.map.core.fields.all.mount.skyscale" GUID="aXj6NA2mdk+abHKUTINYOg=="/>
<!-- Field of Ruin Hearts-->
<Trail type="legs.map.core.fields.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Fields Hearts 1.trl" color="FFFF00"/>
<Trail type="legs.map.core.fields.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Fields Hearts 2.trl" color="FFFF00"/>
<POI MapID="21" xpos="-690.692" ypos="69.0031" zpos="-379.108" type="legs.map.core.fields.all.start" GUID="2TspRff2m0+pmXCjELrzkQ=="/>
<POI MapID="21" xpos="197.886" ypos="36.1847" zpos="-801.213" GUID="yKuPPfNMDEaZ0YHbujv+QQ==" type="legs.map.core.fields.all.heart" iconFile="Data/LadyElyssa/Images/Hearts/Pile of Metal Scrap.png" heightOffset="5" iconSize="0.5" info="TP: Piece of Charr Scrap Metal x 20" infoRange="4.5" mapVisibility="0" miniMapVisibility="0" fadeNear="4000" fadeFar="4000"/>
<POI MapID="21" xpos="-733.783" ypos="11.9811" zpos="-153.764" type="legs.map.core.fields.all.mount.springer" GUID="gPQqU9Kz50eC5ltfaUEGtg=="/>
<POI MapID="21" xpos="-519.575" ypos="60.4017" zpos="-373.269" type="legs.map.core.fields.all.number.2" GUID="0NtCl3wtxU+B2ThF7cuJ1A=="/>
<POI MapID="21" xpos="-818.181" ypos="66.8604" zpos="-691.647" type="legs.map.core.fields.all.mount.springer" GUID="DDMJ5Gd5J0+MuQtLVMoKFQ=="/>
<POI MapID="21" xpos="167.091" ypos="11.3815" zpos="822.372" type="legs.map.core.fields.all.wp" GUID="t19RoDleUkOGSaQTgy1ehA==" copy="[&BNMAAAA=]" copy-message="Hawkgates Waypoint

Once HEART is Complete"/>
<POI MapID="21" xpos="434.65" ypos="1.8373" zpos="818.738" type="legs.map.core.fields.all.finish" GUID="faPAIjUxZEq/0wg2t3jH8A=="/>
<Trail type="legs.map.core.fields.wp" trailData="Data/LadyElyssa/Map Completion/Fields WP.trl" color="CC66FF"/>
<POI MapID="21" xpos="-690.721" ypos="69.1755" zpos="-380.174" type="legs.map.core.fields.wp.start" GUID="CZ+GRg9QIUCYUOYjktUysQ=="/>
<POI MapID="21" xpos="-542.84" ypos="14.3087" zpos="725.061" type="legs.map.core.fields.wp.mount.skimmer" GUID="Jf/JxmJ44EOuDuUhjTcAcw=="/>
<POI MapID="21" xpos="436.69" ypos="1.83661" zpos="821.947" type="legs.map.core.fields.wp.finish" GUID="A2jBuVInWk63sIuNhqQD7w=="/>
<POI MapID="21" xpos="830.961" ypos="37.8339" zpos="629.388" type="legs.map.core.fields.all.wp" GUID="WI59VvHju02OH8YKcVYH9w==" copy="[&BEwBAAA=]" copy-message="Fangfury Watch Waypoint

Once HEART is Complete"/>
<Trail type="legs.map.core.blazeridge.all.number.1" trailData="Data/LadyElyssa/Map Completion/Blazeridge 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.number.2" trailData="Data/LadyElyssa/Map Completion/Blazeridge 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.number.3" trailData="Data/LadyElyssa/Map Completion/Blazeridge 3.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.number.3" trailData="Data/LadyElyssa/Map Completion/Blazeridge 3 Alt.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.number.4" trailData="Data/LadyElyssa/Map Completion/Blazeridge 4.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.number.5" trailData="Data/LadyElyssa/Map Completion/Blazeridge 5.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.number.6" trailData="Data/LadyElyssa/Map Completion/Blazeridge 6.trl" color="00FFFF"/>
<Trail type="legs.map.core.blazeridge.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Blazeridge Hearts 1.trl" color="FFFF00"/>
<Trail type="legs.map.core.blazeridge.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Blazeridge Hearts 2.trl" color="FFFF00"/>
<Trail type="legs.map.core.blazeridge.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Blazeridge Hearts 3.trl" color="FFFF00"/>
<Trail type="legs.map.core.blazeridge.all.stealthheart" trailData="Data/LadyElyssa/Map Completion/Blazeridge Stealth Heart.trl" color="262626"/>
<POI MapID="20" xpos="292.534" ypos="17.7669" zpos="-1036.06" type="legs.map.core.blazeridge.all.heartinfo" GUID="bzb1wMnz10iLzXU05UPv1g==" info="DESTROY Ogre Flag Stands, KILL Ogres & Pets

TALK to Fuming Soldiers

REVIVE Soldiers" infoRange="60"/>
<POI MapID="20" xpos="215.173" ypos="23.8115" zpos="-955.821" type="legs.map.core.blazeridge.all.heartinfo" GUID="n6zqaUq+jE+PYXZxVHY+fQ==" info="DESTROY Ogre Flag Stands, KILL Ogres & Pets

TALK to Fuming Soldiers

REVIVE Soldiers" infoRange="45"/>
<POI MapID="20" xpos="81.6392" ypos="3.92498" zpos="-1087.33" type="legs.map.core.blazeridge.all.heartinfo" GUID="djKOQCGMhEafEaR+R6+odA==" info="SEARCH Suspicious Bushes & KILL Seperatists

REPAIR Small Fishing Nets

INTERACT with Fish Barrels

OFFER FISH to Salamanders and lead them to the Blue Capture Area" infoRange="100"/>
<POI MapID="20" xpos="-107.462" ypos="25.9421" zpos="-914.623" type="legs.map.core.blazeridge.all.heartinfo" GUID="KpaGEkyuS0OdayAcKg9OEA==" info="KILL Seperatists

DESTROY Cannons, Trebuchets, Amunitions & Weapon Plans

FREE Soldiers" infoRange="90"/>
<POI MapID="20" xpos="-362.493" ypos="4.18481" zpos="-882.185" type="legs.map.core.blazeridge.all.heartinfo" GUID="JEZ+AzREe025whXSsgZkgw==" info="KILL Branded

PICK UP Old Ascalonian Weapons to Spawn Ghosts, KILL Ghosts

PICK UP Branded Crystals & Throw Crystal Shard at Ghosts" infoRange="72"/>
<POI MapID="20" xpos="-288.692" ypos="0.437373" zpos="-643.24" type="legs.map.core.blazeridge.all.heartinfo" GUID="UbH+voi3HEeyYzOu6ZaL8w==" info="KILL Branded" infoRange="32"/>
<POI MapID="20" xpos="-222.182" ypos="2.92719" zpos="-644.4" type="legs.map.core.blazeridge.all.heartinfo" GUID="XuT6ht1wvU2nRd7QdemUoA==" info="PICK UP & USE Flamethrower to KILL Branded Devourers

DESTROY Branded Devourer Nests" infoRange="32"/>
<POI MapID="20" xpos="-355.31" ypos="2.65539" zpos="-602.162" type="legs.map.core.blazeridge.all.heartinfo" GUID="V4rpzqmWDka1OxCrVazbyg==" info="PICK UP & USE Flamethrower to KILL Branded Devourers

DESTROY Branded Devourer Nests" infoRange="40"/>
<POI MapID="20" xpos="-454.025" ypos="30.5413" zpos="100.315" type="legs.map.core.blazeridge.all.heartinfo" GUID="mrhgApMAc06xY6NEfCH3qA==" info="KILL Skritt

DISABLE Skritt Traps (run over on mount)" infoRange="66"/>
<POI MapID="20" xpos="-556.18" ypos="58.0899" zpos="12.1618" type="legs.map.core.blazeridge.all.heartinfo" GUID="UylskmpEYkOEYJwV/J7Xjw==" info="KILL Skritt

DISABLE Skritt Traps (run over on mount)

KNOCK OVER Skritt Shiny-things

STEAL Sentinel Weapons, Use 1. RUSH then Weapon Swap" infoRange="72"/>
<POI MapID="20" xpos="-236.385" ypos="6.42027" zpos="-36.932" type="legs.map.core.blazeridge.all.heartinfo" GUID="oUoFlr1HokipYPMBViVtaA==" info="EXAMINE Mysterious Stones

KILL Ascalonian Ghosts" infoRange="55"/>
<POI MapID="20" xpos="7.07349" ypos="49.2693" zpos="-82.4054" type="legs.map.core.blazeridge.all.heartinfo" GUID="uJb6JJAMSkWfd27I3EmI4A==" info="TALK to Heart Scholar Olenn

2. I'm Familiar with your plan. Let's get started." infoRange="35"/>
<POI MapID="20" xpos="133.775" ypos="29.0186" zpos="-178.744" type="legs.map.core.blazeridge.all.heartinfo" GUID="T1OTG5/G0kOvCSG3/Ffu3w==" info="DESTROY Grawl Supplies, KILL Grawl

INTERACT with Tree Branches

PICK UP Unformed Earth Elementals" infoRange="100"/>
<POI MapID="20" xpos="428.817" ypos="41.6159" zpos="200.783" type="legs.map.core.blazeridge.all.heartinfo" GUID="a22WMlvysUmjgf6N8Q0rGA==" info="TALK to Unskilled Ogres and Fight

PICK UP Chickens and CAGE in Chicken Cages

PICK UP Frying Pan and then use the Fire Pit to COOK

Take the Ogre Stew and INTERACT with Food Supply

REPAIR Ogre Pet Houses (weapon swap)

TALK to Unskilled Raptors
- Idle: Threaten
- Sleeping: Kick Dirt
- Cowering: Offer Treat" infoRange="65"/>
<POI MapID="20" xpos="489.978" ypos="47.1167" zpos="768.356" type="legs.map.core.blazeridge.all.heartinfo" GUID="13VKJBuZOEmKLFgGltHxVg==" info="METHOD 1:
Place Portal
GO TO to Fina Duskmaker (Heart)
ACTIVATE PORTAL then TALK to get Stealth

METHOD 2: 
Use Prototype Position Rewinder
TALK to Fina Duskmaker (Heart)
Re-Activate the Position Rewinder

METHOD 3: 
TALK to Fina Duskmaker (Heart) for Stealth
Follow Yellow Heart Line until you are back with Fina then Repeat

METHOD 4:
Follow Black Heart Route from Fina Duskmaker (Heart) once you have Stealth" infoRange="55"/>
<POI MapID="20" xpos="370.646" ypos="37.5738" zpos="1029.32" type="legs.map.core.blazeridge.all.heartinfo" GUID="oZjjrvIoGkuFs1Vaakx3JQ==" info="KILL Separatists & DESTROY Separatist Supplies

STEAL Explosives" infoRange="75"/>
<POI MapID="20" xpos="27.1167" ypos="57.9858" zpos="676.198" type="legs.map.core.blazeridge.all.heartinfo" GUID="ZVPM+VCEnUe/BQyOR9V+Vw==" info="KILL Harpies & DESTROY Harpy Roosts

COLLECT Harpy Feathers and hand in to Wode (Heart)" infoRange="100"/>
<POI MapID="20" xpos="-181.771" ypos="9.5216" zpos="870.921" type="legs.map.core.blazeridge.all.heartinfo" GUID="od7o6fhI3EOpCmJhHbzBiw==" info="DESTROY Noxious Branded Plants

KILL Branded & SMASH Branded Crystals" infoRange="100"/>
<POI MapID="20" xpos="-253.92" ypos="0.873981" zpos="243.734" type="legs.map.core.blazeridge.all.heartinfo" GUID="gUFnQxZIOkSWpR6+fwA3HQ==" info="KILL Inquest & Mark II Golems

DESTROY Inquest Turrets & Inquest Equipment

STEAL Inquest Research Data" infoRange="50"/>
<POI MapID="20" xpos="158.179" ypos="50.7673" zpos="-582.283" type="legs.map.core.blazeridge.all.heartinfo" GUID="+FOnONqewUeaLP0im2232Q==" info="KILL Ogres

DESTROY Ogre Supplies

DESTROY Ogre Houses

DESTROY Ogre Pet Houses

DESTROY Ogre Flagstands" infoRange="50"/>
<POI MapID="20" xpos="-147.676" ypos="24.2955" zpos="-856.717" type="legs.map.core.blazeridge.all.mount.springer" GUID="uoqAbslmP0igi0ZB3QTICg=="/>
<POI MapID="20" xpos="-325.715" ypos="38.302" zpos="-50.9349" type="legs.map.core.blazeridge.all.glider.medium" GUID="xTKI2bSNf0+FELofoIj2Gw=="/>
<POI MapID="20" xpos="335.301" ypos="33.8701" zpos="956.84" type="legs.map.core.blazeridge.all.mount.springer" GUID="+MgmEZPnzkeX7Uj+buwHTA=="/>
<POI MapID="20" xpos="-300.545" ypos="18.3865" zpos="390.297" type="legs.map.core.blazeridge.all.mount.skyscale" GUID="Z92rxIrL20muSNLSeYgSyQ=="/>
<POI MapID="20" xpos="-377.236" ypos="34.0813" zpos="655.57" type="legs.map.core.blazeridge.all.mount.skyscale" GUID="dbAwZG6ytE+H/e1PGGZvXA=="/>
<POI MapID="20" xpos="502.001" ypos="55.8054" zpos="-753.545" type="legs.map.core.blazeridge.all.wp" GUID="oc07XiQPyU2AY1GzqphrJQ==" copy="[&BFIDAAA=]" copy-message="Soot Road Waypoint"/>
<POI MapID="20" xpos="375.009" ypos="66.0125" zpos="-355.772" type="legs.map.core.blazeridge.all.wp" GUID="VsyDDwyEk0GZPVUv6GUBiA==" copy="[&BE8DAAA=]" copy-message="Gastor Gullet Waypoint"/>
<POI MapID="20" xpos="562.6" ypos="32.8162" zpos="461.121" type="legs.map.core.blazeridge.all.wp" GUID="LttY1I+BoEi2r5GQ7orNFg==" copy="[&BAACAAA=]" copy-message="Lunk Krall Waypoint

If not Contested"/>
<POI MapID="20" xpos="-256.203" ypos="0.925726" zpos="242.544" type="legs.map.core.blazeridge.all.wp" GUID="hzXrdKGgbkGgy2RVZ3SMSg==" copy="[&BAQCAAA=]" copy-message="Brandview Waypoint

When Heart is Complete."/>
<POI MapID="20" xpos="-427.159" ypos="5.32199" zpos="1133" type="legs.map.core.blazeridge.all.wp" GUID="/Wg9sCJEXEOKVS0+CgT8kA==" copy="[&BAMCAAA=]" copy-message="Kindling Waypoint"/>
<POI MapID="20" xpos="-201.521" ypos="3.02052" zpos="-657.828" type="legs.map.core.blazeridge.all.wp" GUID="DZ5WkDWpE02YQFgnWwUMkQ==" copy="[&BPoBAAA=]" copy-message="Steeleye Waypoint"/>
<POI MapID="20" xpos="-386.557" ypos="2.74887" zpos="-605.27" type="legs.map.core.blazeridge.all.wp" GUID="aZWZ2T6ydkO6FhqVR2e58w==" copy="[&BPoBAAA=]" copy-message="Steeleye Waypoint"/>
<POI MapID="20" xpos="341.298" ypos="39.4417" zpos="1012.83" type="legs.map.core.blazeridge.all.wp" GUID="ZZyhAuEBo0+nv5sNACRzpA==" copy="[&BAECAAA=]" copy-message="When heart is complete, 

Terra Carorunda Waypoint"/>
<POI MapID="20" xpos="352.219" ypos="40.2346" zpos="1057.05" type="legs.map.core.blazeridge.all.wp" GUID="CQbFG3OxZU+sj92SO4K/sQ==" copy="[&BAECAAA=]" copy-message="Terra Carorunda Waypoint"/>
<POI MapID="20" xpos="417.095" ypos="81.8903" zpos="-706.706" type="legs.map.core.blazeridge.all.glider.medium" GUID="9Z/DGIzvpEKt7vdpA+SegA=="/>
<POI MapID="20" xpos="562.6" ypos="32.8162" zpos="461.121" type="legs.map.core.blazeridge.all.wp" GUID="+E9WlILzB0S5hNInD0X9QA=="/>
<POI MapID="20" xpos="-72.2047" ypos="34.3768" zpos="877.92" type="legs.map.core.blazeridge.all.glider.medium" GUID="bKq0GfvnVEWTB4ffqbCNpg=="/>
<POI MapID="20" xpos="-320.108" ypos="41.3622" zpos="-16.6697" type="legs.map.core.blazeridge.all.glider.medium" GUID="wGICN4muMk2SJBasPuwtPQ=="/>
<POI MapID="20" xpos="473.871" ypos="52.8891" zpos="798.651" type="legs.map.core.blazeridge.all.heartportal" GUID="/95DuijnH0WuiEVN8mDx4Q==" minSize="32" fadeNear="1200" fadeFar="2400" heightOffset="0" />
<POI MapID="20" xpos="445.697" ypos="45.3185" zpos="747.775" type="legs.map.core.blazeridge.all.heartportal" GUID="odAzoOHG00OG5SSVdDvvEw==" minSize="32" fadeNear="1200" fadeFar="2400" heightOffset="0" />
<POI MapID="20" xpos="433.172" ypos="42.0755" zpos="-1191.78" type="legs.map.core.blazeridge.all.mount.beetle" GUID="034ebG2yqk62Etp0BYPFog=="/>
<POI MapID="20" xpos="434.125" ypos="49.4423" zpos="-1016.19" type="legs.map.core.blazeridge.all.mount.skyscale" GUID="pxvfxfpzYkGDjoW55DhxGw=="/>
<POI MapID="20" xpos="478.981" ypos="31.0935" zpos="487.604" type="legs.map.core.blazeridge.all.mount.springer" GUID="E4+QWwI6rUywuHbsBdg5QQ=="/>
<POI MapID="20" xpos="-441.383" ypos="40.546" zpos="495.073" type="legs.map.core.blazeridge.all.mount.skyscale" GUID="xDbjPgUVsUW7FeN6LJ9phQ=="/>
<POI MapID="20" xpos="-172.713" ypos="30.0856" zpos="-896.904" type="legs.map.core.blazeridge.all" GUID="balGbDLJm0yHipUuXBU1eg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="20" xpos="62.8011" ypos="4.24667" zpos="-1079.64" type="legs.map.core.blazeridge.all.mount.jackal" GUID="cK1E5jgIIkik7KOsSXdAiQ=="/>
<POI MapID="20" xpos="-22.4956" ypos="33.8885" zpos="-950.409" type="legs.map.core.blazeridge.all.mount.beetle" GUID="3rmv2Lp+cEChxpxT91Ql4Q=="/>
<POI MapID="20" xpos="205.413" ypos="55.117" zpos="-576.039" type="legs.map.core.blazeridge.all.mount.jackal" GUID="WBEwiRWY90682Ziuysx7xg=="/>
<POI MapID="20" xpos="-64.9022" ypos="18.574" zpos="-740.473" type="legs.map.core.blazeridge.all.number.2" GUID="QbMm5soCpU+DEvST4BTxkw=="/>
<POI MapID="20" xpos="-193.643" ypos="13.4261" zpos="-926.125" type="legs.map.core.blazeridge.all.mount.jackal" GUID="Qu39rAAffk66hWkOuM+G/w=="/>
<POI MapID="20" xpos="-338.364" ypos="4.02796" zpos="-783.958" type="legs.map.core.blazeridge.all.mount.beetle" GUID="3wYO/76mPkSoDs34xxHa4A=="/>
<POI MapID="20" xpos="-301.517" ypos="10.5148" zpos="-605.649" type="legs.map.core.blazeridge.all.mount.beetle" GUID="tCFnKFJAMUmEMIidQXBtMA=="/>
<POI MapID="20" xpos="130.002" ypos="13.1452" zpos="-226.119" type="legs.map.core.blazeridge.all.mount.beetle" GUID="mnHf9qYbskqrcZkz6N01lQ=="/>
<POI MapID="20" xpos="324.179" ypos="73.9821" zpos="-122.875" type="legs.map.core.blazeridge.all.mount.beetle" GUID="eVuPD29iAUyA/VKFgfO9xQ=="/>
<POI MapID="20" xpos="324.739" ypos="23.0203" zpos="261.47" type="legs.map.core.blazeridge.all.mount.beetle" GUID="e0DWdklFZEa24gGHshIBiQ=="/>
<POI MapID="20" xpos="464.743" ypos="39.9692" zpos="525.686" type="legs.map.core.blazeridge.all.mount.beetle" GUID="z6xFZMCMI0CIn18bYtwePA=="/>
<POI MapID="20" xpos="-6.09227" ypos="26.9451" zpos="858.198" type="legs.map.core.blazeridge.all.mount.jackal" GUID="j7OSn2H1+0GqMH51rfhLBA=="/>
<POI MapID="20" xpos="29.479" ypos="26.5344" zpos="771.627" type="legs.map.core.blazeridge.all.mount.raptor" GUID="fp4g3T2Qpk+z2iOyUs6bsg=="/>
<POI MapID="20" xpos="338.962" ypos="71.6761" zpos="-108.162" type="legs.map.core.blazeridge.all.number.3" GUID="9rtRI2XRr06BiqHd7+aXSA=="/>
<POI MapID="20" xpos="306.365" ypos="20.9075" zpos="898.503" type="legs.map.core.blazeridge.all.number.4" GUID="+gxJGU4YKUa4o6sBVFlTRg=="/>
<POI MapID="20" xpos="398.858" ypos="18.9397" zpos="-948.752" type="legs.map.core.blazeridge.all.mount.skyscale" GUID="/h+5BZAfbkOjb6fT+zafxQ=="/>
<POI MapID="20" xpos="205.364" ypos="16.0744" zpos="-897.326" type="legs.map.core.blazeridge.all.mount.jackal" GUID="d2z22OmYMkyS+QiuQCt+Zg=="/>
<POI MapID="20" xpos="-71.2262" ypos="17.9322" zpos="-745.491" type="legs.map.core.blazeridge.all.mount.jackal" GUID="AkuCd7zaQUeC1WPVafooNw=="/>
<POI MapID="20" xpos="-300.014" ypos="15.55" zpos="-963.27" type="legs.map.core.blazeridge.all.mount.beetle" GUID="HgN2eNxJ20WpQ41/JNlmSA=="/>
<POI MapID="20" xpos="-426.625" ypos="29.366" zpos="101.761" type="legs.map.core.blazeridge.all.mount.raptor" GUID="UygskbLsfkuzIloO06yHkw=="/>
<POI MapID="20" xpos="-159.627" ypos="15.4434" zpos="-55.9453" type="legs.map.core.blazeridge.all.mount.beetle" GUID="iljszcCEOkGsYVEI4bFeEw=="/>
<POI MapID="20" xpos="337.4" ypos="70.7059" zpos="-101.519" type="legs.map.core.blazeridge.all.mount.beetle" GUID="S3kkRbxpv0uUyzEBS0FlCA=="/>
<POI MapID="20" xpos="291.749" ypos="30.7944" zpos="879.868" type="legs.map.core.blazeridge.all.mount.beetle" GUID="HeYFH7mjoE66BITJRVc7fw=="/>
<POI MapID="20" xpos="-244.072" ypos="21.2348" zpos="786.214" type="legs.map.core.blazeridge.all.mount.beetle" GUID="LVRVOeOoD02aLcUTJ1xPzw=="/>
<POI MapID="20" xpos="-448.459" ypos="37.1172" zpos="389.245" type="legs.map.core.blazeridge.all.mount.beetle" GUID="9BWHPf11fUmG1pyUsJdjLA=="/>
<POI MapID="20" xpos="-411.736" ypos="35.6004" zpos="813.54" type="legs.map.core.blazeridge.all.mount.raptor" GUID="8aQVD8FNZ0qsG+0WnMx73w=="/>
<POI MapID="20" xpos="-420.791" ypos="28.1597" zpos="957.192" type="legs.map.core.blazeridge.all.mount.raptor" GUID="LWYSjjahr0yqZhuyZbFZUw=="/>
<POI MapID="20" xpos="-518.62" ypos="19.5207" zpos="992.566" type="legs.map.core.blazeridge.all.number.6" GUID="OCgTRB2FiEyWip8fM4StEw=="/>
<POI MapID="20" xpos="-138.323" ypos="4.02813" zpos="857.236" type="legs.map.core.blazeridge.all.heartinfo" GUID="whADHV6qyEaKiW+SA02PMw==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-104.022" ypos="1.81387" zpos="822.714" type="legs.map.core.blazeridge.all.heartinfo" GUID="7CrL7smZ1kK2AjLiz3Oqeg==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-275.319" ypos="4.18479" zpos="861.184" type="legs.map.core.blazeridge.all.heartinfo" GUID="uCku/TeWOE2iYfgf1V/WvA==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-209.721" ypos="11.3292" zpos="1032.35" type="legs.map.core.blazeridge.all.heartinfo" GUID="jCSAvRI9TkCCXKBcEAKDtw==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-241.667" ypos="9.25971" zpos="1059.44" type="legs.map.core.blazeridge.all.heartinfo" GUID="txkW93etxUC/ZukDsFZ+cA==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-333.314" ypos="8.0934" zpos="1112.43" type="legs.map.core.blazeridge.all.heartinfo" GUID="GOw4szIB6EeMPKNlZRmZaw==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-347.326" ypos="3.89572" zpos="1077.66" type="legs.map.core.blazeridge.all.heartinfo" GUID="3vz7gSEOdEudIO2o+SprbA==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-393.906" ypos="3.00857" zpos="1103.7" type="legs.map.core.blazeridge.all.heartinfo" GUID="k+sLka0pbUm63beY7hTBYA==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-395.286" ypos="8.6745" zpos="1052.2" type="legs.map.core.blazeridge.all.heartinfo" GUID="bD1NM/bykUG/I6xpv9UU6w==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-319.233" ypos="3.85243" zpos="1047.03" type="legs.map.core.blazeridge.all.heartinfo" GUID="FpLz4JjGPUOZOGqyuG3Uqw==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-378.046" ypos="8.97582" zpos="933.367" type="legs.map.core.blazeridge.all.heartinfo" GUID="4D0v4qaJOUKgdTmdovL0pQ==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-320.531" ypos="3.73029" zpos="874.355" type="legs.map.core.blazeridge.all.heartinfo" GUID="zUABEd+B4kalS+njJ5Ztkw==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-310.568" ypos="3.01883" zpos="836.832" type="legs.map.core.blazeridge.all.heartinfo" GUID="vdnb67dokEeUUT4HtSb+2A==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-277.605" ypos="7.02745" zpos="861.432" type="legs.map.core.blazeridge.all.heartinfo" GUID="ncVZggcdJEqESvyBv9SPOA==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-257.504" ypos="6.96265" zpos="888.108" type="legs.map.core.blazeridge.all.heartinfo" GUID="kZSDa2q1nkioE2tPWksnjg==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-324.583" ypos="12.9693" zpos="930.511" type="legs.map.core.blazeridge.all.heartinfo" GUID="GpGammCJG0GFC2CXk6e7JA==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-296.287" ypos="3.01074" zpos="1013.38" type="legs.map.core.blazeridge.all.heartinfo" GUID="QKDjTB322kaJ6PZKobiIMw==" iconFile="Data/LadyElyssa/Images/Hearts/NoxiousBrandedPlant.png" miniMapVisibility="1" mapVisibility="1" mapDisplaySize="32" inGameVisibility="0"/>
<POI MapID="20" xpos="-459.505" ypos="35.5188" zpos="412.167" type="legs.map.core.blazeridge.all.number.5" GUID="GzcHvc9HnUWR5AuxcoEQ9w=="/>
<POI MapID="20" xpos="437.901" ypos="49.7254" zpos="-1019.44" type="legs.map.core.blazeridge.all.glider.medium" GUID="tvvYk/7Tf0eBFM2P3DV2Lw=="/>
<POI MapID="20" xpos="435.13" ypos="43.0611" zpos="-1194.93" type="legs.map.core.blazeridge.all.start" GUID="sjw6O+h7lE62QB4bklHXpg=="/>
<POI MapID="20" xpos="-538.201" ypos="18.2254" zpos="971.668" type="legs.map.core.blazeridge.all.finish" GUID="O7KTfm12IUG4ewRm5dsycg=="/>
<Trail type="legs.map.core.blazeridge.wp" trailData="Data/LadyElyssa/Map Completion/Blazeridge Steppes WP.trl" color="CC66FF"/>
<POI MapID="20" xpos="435.088" ypos="42.9921" zpos="-1194.64" type="legs.map.core.blazeridge.wp.start" GUID="M/JRcjQen0CmAZBA5s6mmw=="/>
<POI MapID="20" xpos="-326.655" ypos="38.3035" zpos="-51.0915" type="legs.map.core.blazeridge.wp.mount.skyscale" GUID="7zO+wYaepU6dbfqs66ZUVg=="/>
<POI MapID="20" xpos="-365.099" ypos="0.930174" zpos="392.03" type="legs.map.core.blazeridge.wp.mount.springer" GUID="I8lRY+fLTUOAnqxktOguzw=="/>
<POI MapID="20" xpos="-538.172" ypos="18.2182" zpos="971.025" type="legs.map.core.blazeridge.wp.finish" GUID="kjurQ8N2J0aImlbyKgzybg=="/>
<Trail type="legs.map.core.blazeridge.wp.barefoot" trailData="Data/LadyElyssa/Map Completion/Blazeridge WP Barefoot.trl"/>
<Trail type="legs.map.core.ironmarches.all.number.1" trailData="Data/LadyElyssa/Map Completion/Iron Marches 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.ironmarches.all.number.2" trailData="Data/LadyElyssa/Map Completion/Iron Marches 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.ironmarches.all.number.3" trailData="Data/LadyElyssa/Map Completion/Iron Marches 3.trl" color="00FFFF"/>
<Trail type="legs.map.core.ironmarches.all.number.4" trailData="Data/LadyElyssa/Map Completion/Iron Marches 4.trl" color="00FFFF"/>
<Trail type="legs.map.core.ironmarches.all.number.5" trailData="Data/LadyElyssa/Map Completion/Iron Marches 5.trl" color="00FFFF"/>
<POI MapID="25" xpos="300.099" ypos="29.8339" zpos="-308.053" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="eEdwGYcnnk2EFmaI4QUI2A=="/>
<POI MapID="25" xpos="343.2" ypos="31.2726" zpos="-198.855" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="DucuXNPMvUGKgahzQkwAaQ=="/>
<POI MapID="25" xpos="572.574" ypos="24.8533" zpos="337.282" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="YSkOe3Nz0ku/sQ8NiPEEyA=="/>
<POI MapID="25" xpos="538.504" ypos="3.81018" zpos="309.16" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="po9yGiin10Cd7EDiyl3TOw=="/>
<POI MapID="25" xpos="355.142" ypos="14.2648" zpos="484.13" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="975X/eASY0aQEdQaIQving=="/>
<POI MapID="25" xpos="200.528" ypos="61.1" zpos="374.375" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="TfTCKJMSZ0eVmDWsLFRNHw=="/>
<POI MapID="25" xpos="161.245" ypos="20.5031" zpos="554.955" type="legs.map.core.ironmarches.all.mount.beetle" GUID="arawLXpLWkGDGOe6odhVtQ=="/>
<POI MapID="25" xpos="-0.0198499" ypos="20.5349" zpos="-1041.49" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="huHM4DkeZ0e6DmS3ptxWDw=="/>
<POI MapID="25" xpos="-441.659" ypos="71.4908" zpos="-1134.7" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="rmAm/0+DBkmSK4XfQHku0g=="/>
<POI MapID="25" xpos="-186.436" ypos="22.5263" zpos="358.288" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="I+/wO0tMFEeo1sBPxLaEjA=="/>
<POI MapID="25" xpos="43.33" ypos="0.772592" zpos="-243.687" type="legs.map.core.ironmarches.all.wp" GUID="+cK6coFAGUeGveXAKP04Gg==" copy="[&BOkBAAA=]" copy-message="Brandwatch Encampment Waypoint"/>
<POI MapID="25" xpos="183.02" ypos="4.91513" zpos="-105.443" type="legs.map.core.ironmarches.all.number.2" GUID="BJZ6QozI20K/NV5xdhzd6w=="/>
<POI MapID="25" xpos="572.667" ypos="-0.236269" zpos="1161.02" type="legs.map.core.ironmarches.all.wp" GUID="XVfzIQ1AzUqTmjMKbgkgpQ==" copy="[&BOYBAAA=]" copy-message="Hellion Waypoint"/>
<POI MapID="25" xpos="-363.772" ypos="41.9905" zpos="-1112.58" type="legs.map.core.ironmarches.all.mount.springer" GUID="y7xSubnFwkuD5fvvkhYLCw=="/>
<POI MapID="25" xpos="559.602" ypos="11.3559" zpos="-561.802" type="legs.map.core.ironmarches.all.mount.beetle" GUID="oW4ZNFz2HUCS1BN/YFlAUA=="/>
<POI MapID="25" xpos="169.548" ypos="17.6856" zpos="21.4702" type="legs.map.core.ironmarches.all.mount.springer" GUID="jEns0KGY3UCRkuvfdjqv6w=="/>
<POI MapID="25" xpos="389.183" ypos="-1.0964" zpos="189.483" type="legs.map.core.ironmarches.all.mount.skimmer" GUID="fV7P/59Di0CHqg1EG/Hl8g=="/>
<POI MapID="25" xpos="474.128" ypos="50.6226" zpos="900.469" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="IBmsQ7c5+ESvSGi4bLyk7g=="/>
<POI MapID="25" xpos="540.927" ypos="10.5772" zpos="-552.283" type="legs.map.core.ironmarches.all.number.3" GUID="wFijP82XiEycTTeSnQwtmQ=="/>
<POI MapID="25" xpos="532.79" ypos="8.36983" zpos="-574.995" type="legs.map.core.ironmarches.all.mount.raptor" GUID="htAf+yJRUEyj4T4bMhaYUw=="/>
<POI MapID="25" xpos="-194.314" ypos="11.0352" zpos="-1113.37" type="legs.map.core.ironmarches.all.mount.springer" GUID="+4qEVw081EuaxovSduFq4w=="/>
<POI MapID="25" xpos="-411.027" ypos="26.2967" zpos="-933.394" type="legs.map.core.ironmarches.all.mount.springer" GUID="uKTMRVZvWk+3kQBfWHACrQ=="/>
<POI MapID="25" xpos="-329.394" ypos="42.5006" zpos="-16.718" type="legs.map.core.ironmarches.all.mount.springer" GUID="do8o/aQDWkOhRBvYeksh+A=="/>
<POI MapID="25" xpos="-401.208" ypos="55.1895" zpos="1082.95" type="legs.map.core.ironmarches.all.mount.springer" GUID="24sxT3F2O0Sc0bRnCSvUxQ=="/>
<POI MapID="25" xpos="-151.592" ypos="21.7234" zpos="988.162" type="legs.map.core.ironmarches.all.number.4" GUID="EkUdonWipU21juQOVQ6nEw=="/>
<POI MapID="25" xpos="-176.38" ypos="19.4461" zpos="297.4" type="legs.map.core.ironmarches.all.number.5" GUID="Mm9bW3D19kS2u+afsOPXeA=="/>
<POI MapID="25" xpos="-329.52" ypos="-0.237" zpos="462.463" type="legs.map.core.ironmarches.all.mount.skimmer" GUID="DypQeRNKT0W+pqPwNV00GQ=="/>
<POI MapID="25" xpos="-308.567" ypos="74.1743" zpos="1108.13" type="legs.map.core.ironmarches.all.glider.medium" GUID="zL3xuwN19EKVJ0ywQP0Amg=="/>
<POI MapID="25" xpos="-165.771" ypos="21.1177" zpos="897.842" type="legs.map.core.ironmarches.all.wp" GUID="eRv531ZrO0eFVV/ye8BOrg==" copy="[&BO4BAAA=]" copy-message="Gladefall Waypoint"/>
<POI MapID="25" xpos="-139.854" ypos="21.7326" zpos="986.482" type="legs.map.core.ironmarches.all.mount.beetle" GUID="3Vry43Qv+kSA+3uyNEo0Hw=="/>
<POI MapID="25" xpos="-210.062" ypos="0.217533" zpos="1137.73" type="legs.map.core.ironmarches.all.mount.jackal" GUID="RiDNmQ+xT0y1AouOn55M0A=="/>
<POI MapID="25" xpos="-158.032" ypos="27.0603" zpos="1060.98" type="legs.map.core.ironmarches.all.mount.raptor" GUID="iS9dq31ZJEyqD2HNSDaEBw=="/>
<POI MapID="25" xpos="35.7955" ypos="5.87873" zpos="1123.64" type="legs.map.core.ironmarches.all.wp" GUID="FATEAWm57kK66vJWOmzZTg==" copy="[&BOsBAAA=]" copy-message="When Heart is complete Waypoint to

Town of Cowlfang's Star Waypoint"/>
<POI MapID="25" xpos="-479.057" ypos="64.5425" zpos="-1030.81" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="0jvRigoh8U+3ZScpf60LxA=="/>
<POI MapID="25" xpos="-298.253" ypos="54.4687" zpos="-834.823" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="nn1ROhZKAEm03sw5PYcUSg=="/>
<POI MapID="25" xpos="-118.683" ypos="36.3268" zpos="-490.105" type="legs.map.core.ironmarches.all.glider.medium" GUID="E7aefTBlxEGd56nBhKOynA=="/>
<POI MapID="25" xpos="188.675" ypos="46.9499" zpos="56.9024" type="legs.map.core.ironmarches.all.glider.medium" GUID="eT/l9bOCEUuWhdUy8k5GNQ=="/>
<POI MapID="25" xpos="22.0675" ypos="36.219" zpos="1103.34" type="legs.map.core.ironmarches.all.glider.medium" GUID="mpdyZnVBP0SYSa/FhjiljQ=="/>
<POI MapID="25" xpos="251.394" ypos="24.3868" zpos="921.687" type="legs.map.core.ironmarches.all.mount.skyscale" GUID="KiEEBTj9qUCKCG1Sa2qUZA=="/>
<POI MapID="25" xpos="564.895" ypos="11.3198" zpos="-565.588" type="legs.map.core.ironmarches.all.start" GUID="i0loMFz1CEOXu1K32vWivA=="/>
<POI MapID="25" xpos="-559.607" ypos="26.1357" zpos="459.854" type="legs.map.core.ironmarches.all.finish" GUID="HjHP3hWOzEibIE2LbjVNkQ=="/>
<Trail type="legs.map.core.ironmarches.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Iron Marches Hearts 1.trl" color="FFFF00"/>
<Trail type="legs.map.core.ironmarches.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Iron Marches Hearts 2.trl" color="FFFF00"/>
<POI MapID="25" xpos="488.817" ypos="1.60706" zpos="-663.217" type="legs.map.core.ironmarches.all.heartinfo" GUID="L23VjuR+UUSPXN0tBF0ZIQ==" info="KILL Shadow Fiends

TALK to Displaced Spirits

KILL Ghostly Spiders

REVIVE Loggers

EVENT Bria (Kill Minions not Bria)" infoRange="100"/>
<POI MapID="25" xpos="222.494" ypos="5.16456" zpos="-748.623" type="legs.map.core.ironmarches.all.heartinfo" GUID="81zyECptJ0aKFkg7KBFDVw==" info="KILL Separatists

DESTROY Separatist Weapon Caches, Training Dummies & Supply Caches" infoRange="75"/>
<POI MapID="25" xpos="458.854" ypos="8.45758" zpos="-1076.93" type="legs.map.core.ironmarches.all.heartinfo" GUID="Ya4h40yrUE+uqNAlvGqctg==" info="PICK UP Live Cannonball & INTERACT with Iron Legion Cannon

PICK UP Chunk of Wall & Throw in Water

KILL Ascalonian Ghosts" infoRange="100"/>
<POI MapID="25" xpos="-423.152" ypos="61.5263" zpos="-1110.53" type="legs.map.core.ironmarches.all.heartinfo" GUID="D9uRIVUcZ0mQKHz333s7Ww==" info="KILL Flame Legion

DESTROY Flame Turrets, Flame Legion Supply Carts & Flame Legion Braziers" infoRange="100"/>
<POI MapID="25" xpos="-569.884" ypos="79.2995" zpos="-1068.12" type="legs.map.core.ironmarches.all.heartinfo" GUID="bl3svzvn7UW66UrbH68ZkA==" info="KILL Flame Legion

DESTROY Flame Turrets & Flame Legion Braziers" infoRange="50"/>
<POI MapID="25" xpos="-403.275" ypos="50.5163" zpos="-860.873" type="legs.map.core.ironmarches.all.heartinfo" GUID="KNl+ulmBCE2JIPh5UF+r+g==" info="SEARCH Rubble

EXAMINE Tombs & Place Weapons Inside

KILL Ascalonian Ghosts

EVENT KILL Flame Legion" infoRange="45"/>
<POI MapID="25" xpos="-418.923" ypos="49.0029" zpos="-878.907" type="legs.map.core.ironmarches.all.heartinfo" GUID="Wz0/6PDxfUGkDnXacdXfUA==" iconFile="Data/LadyElyssa/Images/Hearts/Rusty Dagger.png" minSize="32" maxSize="16"/>
<POI MapID="25" xpos="-425.892" ypos="48.599" zpos="-850.565" type="legs.map.core.ironmarches.all.heartinfo" GUID="pMVb3oVp4UaXJZndRoSTsg==" iconFile="Data/LadyElyssa/Images/Hearts/Rusty Greatsword.png" minSize="32" maxSize="16"/>
<POI MapID="25" xpos="-402.936" ypos="50.0849" zpos="-835.795" type="legs.map.core.ironmarches.all.heartinfo" GUID="XxOPH/QM70aitOTBNI/aUw==" iconFile="Data/LadyElyssa/Images/Hearts/Rusty Mace.png" minSize="32" maxSize="16"/>
<POI MapID="25" xpos="-374.449" ypos="51.0954" zpos="-842.539" type="legs.map.core.ironmarches.all.heartinfo" GUID="ZwjgJqsUw0iidRaGa0ZUCg==" iconFile="Data/LadyElyssa/Images/Hearts/Rusty Torch.png" minSize="32" maxSize="16"/>
<POI MapID="25" xpos="-385.093" ypos="50.7262" zpos="-860.84" type="legs.map.core.ironmarches.all.heartinfo" GUID="WpK5K6jia0ugDMWM0wm20g==" iconFile="Data/LadyElyssa/Images/Hearts/Rusty Sword.png" minSize="32" maxSize="16"/>
<POI MapID="25" xpos="-386.209" ypos="49.3822" zpos="-880.51" type="legs.map.core.ironmarches.all.heartinfo" GUID="mfMErbhMd0SY6XkifQIYKQ==" iconFile="Data/LadyElyssa/Images/Hearts/Rusty Warhammer.png" minSize="32" maxSize="16"/>
<POI MapID="25" xpos="-203.076" ypos="32.6664" zpos="-723.316" type="legs.map.core.ironmarches.all.heartinfo" GUID="VeKwcxgYoEagWD6n69tWgQ==" info="TAKE SNACK from Devourer Snack Rack & Feed Devourer Queen

PICK UP Lashtail Devourer Eggs

KILL Flame Legion Egg Thieves

DESTROY Devourer Nests

KILL Lashtail Devourer Hatchlings

TALK to Braxa Scalehunter (Heart) to hand in Eggs" infoRange="100"/>
<POI MapID="25" xpos="-200.026" ypos="29.2746" zpos="-608.428" type="legs.map.core.ironmarches.all.heartinfo" GUID="hf3IOwCXs0OhwbWHHQPadA==" info="TAKE SNACK from Devourer Snack Rack & Feed Devourer Queen

PICK UP Lashtail Devourer Eggs

KILL Flame Legion Egg Thieves

DESTROY Devourer Nests

KILL Lashtail Devourer Hatchlings

TALK to Braxa Scalehunter (Heart) to hand in Eggs" infoRange="15"/>
<POI MapID="25" xpos="-559.093" ypos="51.2156" zpos="-354.518" type="legs.map.core.ironmarches.all.heartinfo" GUID="aZf53lKY10e8ramB1ekneA==" info="Stand on top of Scourgejaw Ore Vein

MINE Scourgejaw Ore Vein - Weapon Swap

PICK UP Scourgejaw Iron Ore

THROW ORE in to Smelting Furnace

MOTIVATE Scourgejaw Prisoners (apply conditions)" infoRange="75"/>
<POI MapID="25" xpos="-399.48" ypos="22.7685" zpos="-93.1486" type="legs.map.core.ironmarches.all.heartinfo" GUID="icX35tz0V0u+Jtd2hckTXw==" info="KILL Lava Elementals & Embers

REVIVE Iron Legion" infoRange="50"/>
<POI MapID="25" xpos="-263.043" ypos="33.6767" zpos="-96.8471" type="legs.map.core.ironmarches.all.heartinfo" GUID="dOWZBGRxwUGFpEtrj/5YHQ==" info="KILL Flame Legion

DESTROY Flame Legion Shrines & Flame Turrets" infoRange="100"/>
<POI MapID="25" xpos="-136.76" ypos="20.0092" zpos="301.082" type="legs.map.core.ironmarches.all.heartinfo" GUID="+whT6Qq+PkCBLNdAGxraEw==" info="SET UP War Banners

DISARM Land Mines" infoRange="80"/>
<POI MapID="25" xpos="-53.2594" ypos="2.01187" zpos="526.165" type="legs.map.core.ironmarches.all.heartinfo" GUID="ld9xewIJcU+0Y1VvEQbKjQ==" info="SET UP War Banners

DISARM or Walk Over Land Mines

SETUP Turret (weapon swap)

KILL Flame Legion" infoRange="96"/>
<POI MapID="25" xpos="-203.229" ypos="14.5936" zpos="635.059" type="legs.map.core.ironmarches.all.heartinfo" GUID="mFEL0FU0502/wq4xZ5WRGQ==" info="KILL Flame Legion

SET UP War Banners

DISARM or Walk Over Land Mines" infoRange="35"/>
<POI MapID="25" xpos="286.511" ypos="6.00529" zpos="437.284" type="legs.map.core.ironmarches.all.heartinfo" GUID="jyYC8YDOtECvIxqAOrW70w==" info="KILL Branded

ACTIVATE Experimental Beacons

DESTROY Branded Crystals" infoRange="100"/>
<POI MapID="25" xpos="414.476" ypos="17.8048" zpos="533.464" type="legs.map.core.ironmarches.all.heartinfo" GUID="/Jw7okmGNUKpp669go8Ypg==" info="KILL Branded

ACTIVATE Experimental Beacons

DESTROY Branded Crystals" infoRange="62"/>
<POI MapID="25" xpos="468.836" ypos="1.72097" zpos="283.878" type="legs.map.core.ironmarches.all.heartinfo" GUID="T7t/SyHM7EOYq60ulMCE+g==" info="Use Sentinel Speargun to FISH & FINISH THEM

KILL Branded Fish

ACTIVATE Sentinel Traps

REVIVE Sentinels" infoRange="100"/>
<POI MapID="25" xpos="357.925" ypos="1.37639" zpos="116.9" type="legs.map.core.ironmarches.all.heartinfo" GUID="WEcfArFdaU+iykzvz+Scig==" info="Use Sentinel Speargun to FISH & FINISH THEM

KILL Branded Fish

ACTIVATE Sentinel Traps

REVIVE Sentinels" infoRange="100"/>
<POI MapID="25" xpos="221.396" ypos="3.4068" zpos="52.6023" type="legs.map.core.ironmarches.all.heartinfo" GUID="yfWTsme3RkGbRIlwaP8wjQ==" info="Use Sentinel Speargun to FISH & FINISH THEM

KILL Branded Fish

ACTIVATE Sentinel Traps

REVIVE Sentinels" infoRange="25"/>
<POI MapID="25" xpos="-313.341" ypos="16.7946" zpos="769.395" type="legs.map.core.ironmarches.all.heartinfo" GUID="6SpF4loJ3UCSdYy316mbrg==" info="KILL Flame Legion

DESTROY Flame Legion Braziers, Flame Turrets & Supply Carts" infoRange="55"/>
<POI MapID="25" xpos="-369.915" ypos="17.5014" zpos="828.381" type="legs.map.core.ironmarches.all.heartinfo" GUID="d3EUi7qGkEKtKd3vOCT9KA==" info="KILL Flame Legion

DESTROY Flame Legion Braziers, Flame Turrets & Supply Carts" infoRange="25"/>
<POI MapID="25" xpos="-422.023" ypos="25.5255" zpos="881.516" type="legs.map.core.ironmarches.all.heartinfo" GUID="Mk1k5AItaU+ueuNTzGaxKg==" info="KILL Flame Legion

DESTROY Flame Legion Braziers, Flame Turrets & Supply Carts" infoRange="50"/>
<POI MapID="25" xpos="-454.581" ypos="22.536" zpos="977.995" type="legs.map.core.ironmarches.all.heartinfo" GUID="HNSbUDFchUOLbKp5OjzQ3g==" info="KILL Flame Legion

DESTROY Flame Legion Braziers, Flame Turrets & Supply Carts" infoRange="50"/>
<POI MapID="25" xpos="-458.799" ypos="23.401" zpos="1077.91" type="legs.map.core.ironmarches.all.heartinfo" GUID="0pg6twijDkeb3I6sqrwHDQ==" info="KILL Flame Legion

DESTROY Flame Legion Braziers, Flame Turrets & Supply Carts" infoRange="45"/>
<POI MapID="25" xpos="41.1405" ypos="53.8452" zpos="1085.93" type="legs.map.core.ironmarches.all.heartinfo" GUID="2hPcgEBZJkO2XjkTHw+2Zw==" info="KILL Branded

RELEASE Ogre Traps

DESTROY Branded Devourer Nests & STOMP Branded Devourer Eggs

REVIVE Ogres" infoRange="100"/>
<POI MapID="25" xpos="161.307" ypos="58.8564" zpos="48.6875" type="legs.map.core.ironmarches.all.heartinfo" GUID="5Dmyl+mDe0COb+5HNg3yPw==" iconFile="Data/LadyElyssa/Images/Hearts/ArevirSoulhammer_HP.png" iconSize="0.5" minSize="128"/>
<POI MapID="25" xpos="458.472" ypos="6.18192" zpos="-1067.77" type="legs.map.core.ironmarches.all" GUID="6vGuZEmKu0OanIP7Sib6Lg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="25" xpos="433.535" ypos="34.0885" zpos="484.005" type="legs.map.core.ironmarches.all.mount.jackal" GUID="oX7v1+WkSEmM8LKBX/v8yw=="/>
<POI MapID="25" xpos="458.949" ypos="34.6645" zpos="526.05" type="legs.map.core.ironmarches.all.mount.jackal" GUID="HSS8xbb6TU2xhybwO9Yh2A=="/>
<POI MapID="25" xpos="456.897" ypos="34.3585" zpos="567.32" type="legs.map.core.ironmarches.all.mount.jackal" GUID="6aB5AhUWK02mukIo7tV87Q=="/>
<POI MapID="25" xpos="440.074" ypos="40.781" zpos="626.776" type="legs.map.core.ironmarches.all.mount.raptor" GUID="NS9j3UWGHEua7XWqF81vQA=="/>
<POI MapID="25" xpos="403.319" ypos="17.1096" zpos="669.126" type="legs.map.core.ironmarches.all.mount.raptor" GUID="EqCP/RQfOUq9bgJbMr7jIw=="/>
<POI MapID="25" xpos="353.33" ypos="11.7816" zpos="653.221" type="legs.map.core.ironmarches.all.mount.raptor" GUID="6NPu4z0eK0auzEoZsA9nZQ=="/>
<POI MapID="25" xpos="349.234" ypos="12.9446" zpos="575.778" type="legs.map.core.ironmarches.all.mount.raptor" GUID="P0YA0qujKU+QfJY976p1HA=="/>
<POI MapID="25" xpos="420.424" ypos="2.52237" zpos="-666.966" type="legs.map.core.ironmarches.all.mount.beetle" GUID="5P5wUYNB/kuiOeqndHZvRQ=="/>
<POI MapID="25" xpos="134.865" ypos="2.31381" zpos="-624.116" type="legs.map.core.ironmarches.all.mount.jackal" GUID="VuDh4elNF0CXRrDdR91pOw=="/>
<POI MapID="25" xpos="260.2" ypos="-28.0254" zpos="-831.167" type="legs.map.core.ironmarches.all.mount.skimmer" GUID="dApymdNnf0GA90HYEnmuhQ=="/>
<POI MapID="25" xpos="-229.71" ypos="4.29657" zpos="-391.836" type="legs.map.core.ironmarches.all.mount.beetle" GUID="ckoJIx5nNkC4GYMC0yMWRA=="/>
<POI MapID="25" xpos="-298.175" ypos="49.703" zpos="-6.54991" type="legs.map.core.ironmarches.all.mount.springer" GUID="KCsHiWvoo0S7j5JRNEAlSQ=="/>
<POI MapID="25" xpos="-165.055" ypos="19.3828" zpos="301.905" type="legs.map.core.ironmarches.all.mount.beetle" GUID="ZfLkLH3ll0OaRqr54j8hRQ=="/>
<POI MapID="25" xpos="-169.061" ypos="20.5618" zpos="287.777" type="legs.map.core.ironmarches.all.mount.jackal" GUID="6X4DrO1p5EyBoF4CXW2JBw=="/>
<Trail type="legs.map.core.ironmarches.wp" trailData="Data/LadyElyssa/Map Completion/Iron Marches WP.trl" color="CC66FF"/>
<POI MapID="25" xpos="564.895" ypos="11.3198" zpos="-565.588" type="legs.map.core.ironmarches.wp.start" GUID="hxFpGWnQc0iLnu7nifDg0Q=="/>
<POI MapID="25" xpos="-357.899" ypos="29.5536" zpos="-940.498" type="legs.map.core.ironmarches.wp.mount.springer" GUID="kBRVnQcTk0W5BCbxPGpYkA=="/>
<POI MapID="25" xpos="-559.607" ypos="26.1357" zpos="459.854" type="legs.map.core.ironmarches.wp.finish" GUID="KuHY6TTJX0afXi8P4lUz3g=="/>
<Trail type="legs.map.core.ironmarches.wp.barefoot" trailData="Data/LadyElyssa/Map Completion/Iron Marches WP Barefoot.trl"/>
<Trail type="legs.map.core.fireheart.all.number.1" trailData="Data/LadyElyssa/Map Completion/Fireheart 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.2" trailData="Data/LadyElyssa/Map Completion/Fireheart 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.3" trailData="Data/LadyElyssa/Map Completion/Fireheart 3.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.4" trailData="Data/LadyElyssa/Map Completion/Fireheart 4.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.5" trailData="Data/LadyElyssa/Map Completion/Fireheart 5.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.6" trailData="Data/LadyElyssa/Map Completion/Fireheart 6.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.7" trailData="Data/LadyElyssa/Map Completion/Fireheart 7.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.8" trailData="Data/LadyElyssa/Map Completion/Fireheart 8.trl" color="00FFFF"/>
<Trail type="legs.map.core.fireheart.all.number.9" trailData="Data/LadyElyssa/Map Completion/Fireheart 9.trl" color="00FFFF"/>
<POI MapID="22" xpos="-699.348" ypos="-14.717" zpos="521.276" type="legs.gathering.hearts.fireheart" GUID="mJOCR97pJk22v0n7qzjimQ==" info="Wait for Barracuda to Respawn then follow trail back and repeat." infoRange="10"/>
<Trail type="legs.map.core.fireheart.wp" trailData="Data/LadyElyssa/Map Completion/Fireheart Rise WP.trl" color="CC66FF"/>
<POI MapID="22" xpos="961.517" ypos="8.06689" zpos="-552.887" type="legs.map.core.fireheart.wp.start" GUID="23biWww0gEm7Pf6DkMQUHw=="/>
<POI MapID="22" xpos="439.896" ypos="19.3248" zpos="345.309" type="legs.map.core.fireheart.wp.number.2" GUID="6Ebb14WQRk+7Fl4RTZqXuA=="/>
<POI MapID="22" xpos="386.593" ypos="22.8755" zpos="-0.0665643" type="legs.map.core.fireheart.wp.wp" GUID="lczB35V92kKh2mIOi3veGA==" copy="[&BCUCAAA=]" copy-message="Simurgh Waypoint"/>
<POI MapID="22" xpos="869.312" ypos="55.9372" zpos="658.126" type="legs.map.core.fireheart.wp.wp" GUID="Lp+v8ltdbEGPx6kLqKooig==" copy="[&BCUCAAA=]" copy-message="Simurgh Waypoint"/>
<Trail type="legs.map.core.fireheart.wp.barefoot" trailData="Data/LadyElyssa/Map Completion/Fireheart WP Barefoot.trl"/>
<POI MapID="22" xpos="955.82" ypos="7.71301" zpos="-558.512" type="legs.map.core.fireheart.all.mount.raptor" GUID="ZeM1JsPRzECzeinVo29LNg=="/>
<POI MapID="22" xpos="729.306" ypos="2.6245" zpos="-680.899" type="legs.map.core.fireheart.all.mount.beetle" GUID="9CQWo2/GvEO+p0LQEmhcdw=="/>
<POI MapID="22" xpos="882.151" ypos="7.02494" zpos="-544.347" type="legs.map.core.fireheart.all.mount.skimmer" GUID="Og5GiF3f6kG29opL53xUgg=="/>
<POI MapID="22" xpos="128.046" ypos="55.1334" zpos="-164.914" type="legs.map.core.fireheart.all.mount.raptor" GUID="EaukhdBf502UW8onvffMSQ=="/>
<POI MapID="22" xpos="124.858" ypos="55.1694" zpos="-158.178" type="legs.map.core.fireheart.all.mount.raptor.leap" GUID="mLeDyr/pXkeqbpjL63CCzg=="/>
<POI MapID="22" xpos="176.8" ypos="13.5307" zpos="98.7414" type="legs.map.core.fireheart.all.mount.skyscale" GUID="WhXZ3IE2JUyEUrF5UJyqbg=="/>
<POI MapID="22" xpos="33.4278" ypos="40.0242" zpos="224.581" type="legs.map.core.fireheart.all.mount.skyscale" GUID="1Su6oL0RXkyTq+mchQGAVg=="/>
<POI MapID="22" xpos="422.506" ypos="14.3852" zpos="338.56" type="legs.map.core.fireheart.all.mount.bof" GUID="2z9GFIS1qUWGO+XcjDIp5A=="/>
<POI MapID="22" xpos="445.316" ypos="19.4381" zpos="337.941" type="legs.map.core.fireheart.all.mount.beetle" GUID="yPzCxeIBIE+DIsygEo/fJQ=="/>
<POI MapID="22" xpos="675.756" ypos="44.377" zpos="175.065" type="legs.map.core.fireheart.all.mount.skyscale" GUID="Xzghi8Bo00iKu5eeQBJUqA=="/>
<POI MapID="22" xpos="788.147" ypos="13.403" zpos="24.3138" type="legs.map.core.fireheart.all.mount.beetle" GUID="/Ys9flS4x0Gd6Li6Jatm7A=="/>
<POI MapID="22" xpos="558.718" ypos="9.90361" zpos="48.0732" type="legs.map.core.fireheart.all.mount.skyscale" GUID="UA8HLlFCAEatLGD6g0ci2g=="/>
<POI MapID="22" xpos="451.98" ypos="19.9915" zpos="347.316" type="legs.map.core.fireheart.all.mount.skyscale" GUID="YWe6yytAWE+DnKgZ0dyesA=="/>
<POI MapID="22" xpos="400.201" ypos="12.0688" zpos="338.272" type="legs.map.core.fireheart.all.mount.jackal" GUID="vUoqhFF1JkWECW4LJG0COQ=="/>
<POI MapID="22" xpos="-265.37" ypos="18.2703" zpos="36.4373" type="legs.map.core.fireheart.all.mount.beetle" GUID="NZ4XQpZTEE2+lM0iw9/i7w=="/>
<POI MapID="22" xpos="-815.5" ypos="70.3782" zpos="-84.0191" type="legs.map.core.fireheart.all.mount.beetle" GUID="FAhK/OUz9kmLeinmdNtH6Q=="/>
<POI MapID="22" xpos="436.784" ypos="18.9755" zpos="346.428" type="legs.map.core.fireheart.wp.number.3" GUID="ZTYQjo6oQ0KZUlaY29pXtw=="/>
<POI MapID="22" xpos="434.401" ypos="23.9037" zpos="257.298" type="legs.map.core.fireheart.wp.mount.springer" GUID="UjOCqYYRIUijRCiwvjoJ+A=="/>
<POI MapID="22" xpos="244.511" ypos="38.0826" zpos="661.518" type="legs.map.core.fireheart.wp.mount.springer" GUID="c3Rufv2gdUqTKdc86hPlZQ=="/>
<POI MapID="22" xpos="306.751" ypos="3.23624" zpos="-427.055" type="legs.map.core.fireheart.all" GUID="qmIngbAzJEyCLZdA549Keg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="22" xpos="-891.403" ypos="88.1615" zpos="65.9423" type="legs.map.core.fireheart.wp.finish" GUID="Rkd6seyoMUK0ka9xKDnaUQ=="/>
<!-- Hearts -->
<Trail type="legs.map.core.fireheart.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Fireheart Hearts 1.trl" color="FFFF00"/>
<Trail type="legs.map.core.fireheart.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Fireheart Hearts 2.trl" color="FFFF00"/>
<Trail type="legs.map.core.fireheart.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Fireheart Hearts 3.trl" color="FFFF00"/>
<Trail type="legs.map.core.fireheart.all.heartpath" trailData="Data/LadyElyssa/Map Completion/Fireheart Hearts 4.trl" color="FFFF00"/>
<POI MapID="22" xpos="-714.337" ypos="4.51325" zpos="315.273" GUID="zmycBb//QEORHmW3qz1JdA==" type="legs.map.core.fireheart.all.heart" iconFile="Data/LadyElyssa/Images/Hearts/Barracuda Meat.png" heightOffset="5.5" minSize="12" MaxSize="32" info="TP: Barracuda Meat x 25" infoRange="4.5" mapVisibility="0" miniMapVisibility="0" fadeNear="4000" fadeFar="4000"/>
<POI MapID="22" xpos="804.827" ypos="3.96277" zpos="-655.197" type="legs.map.core.fireheart.all.heartinfo" GUID="Kr1hFY3q3ECKjxU6LEouOg==" info="TALK to Ash / Iron / Blood Legion Soldiers to Spar

POP Tar Bubbles & KILL Tar Elementals / Flame Legion

KILL Rats" infoRange="95"/>
<POI MapID="22" xpos="704.009" ypos="1.8719" zpos="-386.186" type="legs.map.core.fireheart.all.heartinfo" GUID="c5g5iEOUrEWVMaA5VKkqRQ==" info="DISPERSE Concentrated Tar" infoRange="65"/>
<POI MapID="22" xpos="815.309" ypos="-1.05533" zpos="-470.916" type="legs.map.core.fireheart.all.heartinfo" GUID="OVfQ0fQKVky5IRCo4xo0mA==" info="DISPERSE Concentrated Tar" infoRange="60"/>
<POI MapID="22" xpos="369.462" ypos="1.40371" zpos="-727.817" type="legs.map.core.fireheart.all.heartinfo" GUID="7D1PSfHunUqzd5U7renPbw==" info="DISABLE Flame Legion Power Sources

KILL Embers" infoRange="99"/>
<POI MapID="22" xpos="224.476" ypos="1.48026" zpos="-658.869" type="legs.map.core.fireheart.all.heartinfo" GUID="kwvbircn2k2hCnWcRFQ0zA==" info="PLUG Coolant Leaks

KILL Flame Legion" infoRange="55"/>
<POI MapID="22" xpos="572.896" ypos="31.8782" zpos="514.454" type="legs.map.core.fireheart.all.heartinfo" GUID="kyGP2RvgIUmmd53yv0cslg==" info="KILL Flame Legion

DESTROY Flame Legion Turrets & Emblems

KILL Fire Imps & Embers" infoRange="100"/>
<POI MapID="22" xpos="723.541" ypos="43.9188" zpos="579.792" type="legs.map.core.fireheart.all.heartinfo" GUID="baf2s+CKB0S7c2WC0j+vbA==" info="KILL Flame Legion, Fire Imps & Embers" infoRange="65"/>
<POI MapID="22" xpos="312.536" ypos="6.5761" zpos="321.067" type="legs.map.core.fireheart.all.heartinfo" GUID="DZu4KSm+S0CBSOjlzmdUUg==" info="KILL Flame Legion, Fire Imps & Embers

DESTROY Elemental Power Sources" infoRange="100"/>
<POI MapID="22" xpos="222.855" ypos="24.6278" zpos="499.759" type="legs.map.core.fireheart.all.heartinfo" GUID="1irxUBG2UEG8RINWBmEFkA==" info="KILL Flame Legion & Fire Imps

DESTROY Elemental Power Sources & Flame Legion Supplies" infoRange="100"/>
<POI MapID="22" xpos="-83.5872" ypos="63.0962" zpos="263.997" type="legs.map.core.fireheart.all.heartinfo" GUID="ZO2OQxYpcU2GplFFjvjkuw==" info="KILL Flame Legion" infoRange="45"/>
<POI MapID="22" xpos="-247.625" ypos="9.46814" zpos="175.717" type="legs.map.core.fireheart.all.heartinfo" GUID="2KS4eLIAa0uA4HGmROQsrg==" info="KILL Flame Legion

LIGHT Mortar Signal Fires

REPAIR Ash LEgion Traps" infoRange="100"/>
<POI MapID="22" xpos="-50.1057" ypos="16.6246" zpos="-373.937" type="legs.map.core.fireheart.all.heartinfo" GUID="mBSt0ndE7EKP3sC/D+Qvig==" info="KILL Flame Legion & Embers

DISABLE Flame Legion Power Source" infoRange="100"/>
<POI MapID="22" xpos="-714.53" ypos="4.52169" zpos="315.538" type="legs.map.core.fireheart.all.heartinfo" GUID="q92qNzf/REScUNbNnGMo5A==" info="TALK to Enduring Protector (Heart)" infoRange="84"/>
<POI MapID="22" xpos="-730.695" ypos="36.6171" zpos="-547.804" type="legs.map.core.fireheart.all.heartinfo" GUID="OB2LHhb8CkumD4jA+IpHKg==" info="PICK UP Grub Eggs and hand in to Tarstar Chief (Heart)

EVENT Drive off the Harpies" infoRange="89"/>
<POI MapID="22" xpos="-916.708" ypos="58.8783" zpos="-553.004" type="legs.map.core.fireheart.all.heartinfo" GUID="7w2QounxYEeJTixxzltGQw==" info="PICK UP Grub Eggs

KILL Harpies

DESTROY Harpy Eggs" infoRange="100"/>
<POI MapID="22" xpos="-763.47" ypos="58.666" zpos="-719.169" type="legs.map.core.fireheart.all.heartinfo" GUID="Q225Rv6ee0GvAm+MLXHW6Q==" info="KILL Bats, Spiders & Trolls

PICK UP Truffles & FEED Warthogs in Wupwup Grawl Camp" infoRange="70"/>
<POI MapID="22" xpos="-689.575" ypos="48.3524" zpos="-304.578" type="legs.map.core.fireheart.all.heartinfo" GUID="xNPogIVJgUCj0lSobXsFcg==" info="KILL Bears

DESTROY Prickleberry Plants

PICK UP Prickleberries & hand in to Nrocroc Chief (Heart)

REVIVE Nrocroc Villagers" infoRange="100"/>
<POI MapID="22" xpos="-666.791" ypos="55.057" zpos="677.175" type="legs.map.core.fireheart.all.heartinfo" GUID="37dg5CBpHkenFMtDo0Qo5w==" info="TALK to Tactician Lyan

Test Experimental Grenades on Blue Oozes & Snow Trolls

Can use any damage skill while the Experimental Grenades are equipped" infoRange="100"/>
<POI MapID="22" xpos="-742.609" ypos="55.5593" zpos="806.768" type="legs.map.core.fireheart.all.heartinfo" GUID="HTSeKFPDBUqo3FaLjrtZPA==" info="Test Experimental Grenades on Blue Oozes

Can use any damage skill while the Experimental Grenades are equipped

Revive Priory Explorers" infoRange="50"/>
<POI MapID="22" xpos="-803.685" ypos="55.172" zpos="769.494" type="legs.map.core.fireheart.all.heartinfo" GUID="wRVg4MEH30i8n3NEHQL4uw==" info="Test Experimental Grenades on Blue Oozes

Can use any damage skill while the Experimental Grenades are equipped

Revive Priory Explorers" infoRange="21.8"/>
<POI MapID="22" xpos="-838.461" ypos="64.7023" zpos="740.362" type="legs.map.core.fireheart.all.heartinfo" GUID="ULQIm0YVJUiHv06kv9hiFQ==" info="Test Experimental Grenades on Blue Oozes & Snow Trolls

Can use any damage skill while the Experimental Grenades are equipped

Revive Priory Explorers" infoRange="25"/>
<POI MapID="22" xpos="-852.521" ypos="54.8659" zpos="641.883" type="legs.map.core.fireheart.all.heartinfo" GUID="wFQqqngTj0qVTU1m5vbUYA==" info="Test Experimental Grenades on Snow Trolls & Blue Oozes

Can use any damage skill while the Experimental Grenades are equipped

Revive Priory Explorers" infoRange="77"/>
<POI MapID="22" xpos="961.512" ypos="8.06369" zpos="-552.777" type="legs.map.core.fireheart.all.start" GUID="7hhQ44n1L0aB579a2dCz1w=="/>
<POI MapID="22" xpos="797.706" ypos="3.48235" zpos="-656.464" type="legs.map.core.fireheart.all.mount.springer" GUID="pAkXaHrMl0qPRYwQtRZpQQ=="/>
<POI MapID="22" xpos="777.53" ypos="33.5656" zpos="-676.463" type="legs.map.core.fireheart.all.glider.medium" GUID="jgbvlL7TPUu8dm7KXVPSgQ=="/>
<POI MapID="22" xpos="229.107" ypos="9.43188" zpos="-570.045" type="legs.map.core.fireheart.all.mount.springer" GUID="4e4Fczl2mEqhZ8OeckcxHQ=="/>
<POI MapID="22" xpos="915.131" ypos="7.08782" zpos="-561.09" type="legs.map.core.fireheart.all.number.2" GUID="UQwjol706kegjsO+6/GK6A=="/>
<POI MapID="22" xpos="137.988" ypos="36.6073" zpos="-185.661" type="legs.map.core.fireheart.all.mount.springer" GUID="rkVidmUrnEGrlwzmZyppPw=="/>
<POI MapID="22" xpos="124.457" ypos="51.8012" zpos="-86.0634" type="legs.map.core.fireheart.all.mount.springer" GUID="BNccGZjO50GJLalMvReY8Q=="/>
<POI MapID="22" xpos="609.786" ypos="13.9876" zpos="46.5488" type="legs.map.core.fireheart.all.glider.medium" GUID="6/LWLxZuNEKgvz+DN2xeNg=="/>
<POI MapID="22" xpos="11.3075" ypos="47.8439" zpos="220.905" type="legs.map.core.fireheart.all.mount.springer" GUID="9hP8/X1DiEWqerXfKXE2IA=="/>
<POI MapID="22" xpos="19.3774" ypos="44.6302" zpos="224.092" type="legs.map.core.fireheart.all.number.5" GUID="wP/fvG5nw0G59XY/AEarZw=="/>
<POI MapID="22" xpos="482.225" ypos="62.91" zpos="486.993" type="legs.map.core.fireheart.all.mount.skyscale" GUID="yEvqsQa6MU2cCljwJtpaUA=="/>
<POI MapID="22" xpos="485.18" ypos="57.3632" zpos="518.685" type="legs.map.core.fireheart.all.glider.medium" GUID="fuqATSrMpEGUTrPdgDy7LA=="/>
<POI MapID="22" xpos="436.212" ypos="19.0324" zpos="347.105" type="legs.map.core.fireheart.all.number.4" GUID="+mAUhAy47kG6o8YPeY7Msg=="/>
<POI MapID="22" xpos="-212.997" ypos="70.6875" zpos="335.208" type="legs.map.core.fireheart.all.mount.springer" GUID="uroXD/oGcE+UggyvHc3Mlg=="/>
<POI MapID="22" xpos="-216.057" ypos="84.1528" zpos="319.184" type="legs.map.core.fireheart.all.glider.medium" GUID="ladmr3emLEqYerHhmntgQQ=="/>
<POI MapID="22" xpos="-310.4" ypos="72.7051" zpos="-72.5956" type="legs.map.core.fireheart.all.mount.raptor" GUID="E6LDlapJVkqmdYaDXM4BfQ=="/>
<POI MapID="22" xpos="-303.74" ypos="72.3456" zpos="-82.8906" type="legs.map.core.fireheart.all.mount.raptor.leap" GUID="LrilgSojMEmTPb0N9U9nNQ=="/>
<POI MapID="22" xpos="-248.293" ypos="58.6809" zpos="-542.105" type="legs.map.core.fireheart.all.mount.skyscale" GUID="jjtfu7IzPk2NDJPflK36bQ=="/>
<POI MapID="22" xpos="-654.784" ypos="44.1085" zpos="-462.636" type="legs.map.core.fireheart.all.number.6" GUID="kDBTzCDbIEuIePZRzzvWOg=="/>
<POI MapID="22" xpos="-792.08" ypos="2.67002" zpos="369.089" type="legs.map.core.fireheart.all.mount.skimmer" GUID="GRcq1mxag06IG7/n28xtUQ=="/>
<POI MapID="22" xpos="-626.881" ypos="41.4169" zpos="320.934" type="legs.map.core.fireheart.all.glider.medium" GUID="4/q38tBLkEGjAY8ITRcIZA=="/>
<POI MapID="22" xpos="244.974" ypos="-0.00935958" zpos="-642.823" type="legs.map.core.fireheart.all.mount.raptor" GUID="uD2rWSrqAEuI1aU+requ5g=="/>
<POI MapID="22" xpos="623.341" ypos="2.27473" zpos="-355.223" type="legs.map.core.fireheart.all.mount.jackal" GUID="yvg6LqqZNkOAebO5265fwA=="/>
<POI MapID="22" xpos="619.382" ypos="14.497" zpos="-318.641" type="legs.map.core.fireheart.all.mount.raptor" GUID="yG8N/z78B0C7xErGJ2nA2Q=="/>
<POI MapID="22" xpos="279.97" ypos="0.398058" zpos="-413.698" type="legs.map.core.fireheart.all.mount.raptor" GUID="3jAoIewdTkiw+XABfZA0/w=="/>
<POI MapID="22" xpos="389.795" ypos="-0.0443345" zpos="-444.304" type="legs.map.core.fireheart.all.mount.skimmer" GUID="01GhUhccnEKBoMcY+rFBxA=="/>
<POI MapID="22" xpos="240.718" ypos="4.02701" zpos="-359.007" type="legs.map.core.fireheart.all.mount.beetle" GUID="hHWot2HDOkismkEvc93YKA=="/>
<POI MapID="22" xpos="173.124" ypos="20.5738" zpos="-69.5169" type="legs.map.core.fireheart.all.mount.raptor" GUID="WFpKRv7MwUi4GvlWxnGeyg=="/>
<POI MapID="22" xpos="131.142" ypos="24.7318" zpos="141.819" type="legs.map.core.fireheart.all.mount.beetle" GUID="RP6rtaNSBkSnjE46eXb+9A=="/>
<POI MapID="22" xpos="260.022" ypos="10.6175" zpos="337.731" type="legs.map.core.fireheart.all.mount.jackal" GUID="xptu0/x2hk66PwsQ3jDJig=="/>
<POI MapID="22" xpos="667.54" ypos="45.3445" zpos="550.592" type="legs.map.core.fireheart.all.mount.beetle" GUID="za8zBTjdWUObOJ4FDnUEAg=="/>
<POI MapID="22" xpos="440.296" ypos="19.3541" zpos="345.146" type="legs.map.core.fireheart.all.number.3" GUID="glAfIBMoX02dyKIq0WITEA=="/>
<POI MapID="22" xpos="-862.639" ypos="82.4318" zpos="40.1447" type="legs.map.core.fireheart.all.number.7" GUID="gAhe1jWusEWZVMpyT6cCng=="/>
<POI MapID="22" xpos="-896.299" ypos="89.0033" zpos="67.7789" type="legs.map.core.fireheart.all.finish" GUID="Op1hPBF8XUeP8bcL2872pQ=="/>
<POI MapID="22" xpos="-865.444" ypos="82.7714" zpos="40.0931" type="legs.map.core.fireheart.all.number.9" GUID="RhKbw/C82ke7rGx+aHLFOw=="/>
<POI MapID="22" xpos="-769.259" ypos="59.6349" zpos="164.867" type="legs.map.core.fireheart.all.mount.skyscale" GUID="+xm9cDdy0EWAAu6GDExM3g=="/>
<POI MapID="22" xpos="661.401" ypos="3.89108" zpos="484.516" type="legs.map.core.fireheart.all.mount.skyscale" GUID="zbYTUnlFZ0i7w0Ty5R0O6w=="/>
<POI MapID="22" xpos="239.486" ypos="36.7747" zpos="-579.48" type="legs.map.core.fireheart.all.wp" GUID="hVISDcEepk2r7gTxxQ3HHA==" copy="[&BBYCAAA=]" copy-message="Sati Waypoint"/>
<POI MapID="22" xpos="870.508" ypos="56.3014" zpos="658.954" type="legs.map.core.fireheart.all.wp" GUID="PcXYCjlIJU+nmBVlQ6kHkA==" copy="[&BCUCAAA=]" copy-message="Simurgh Waypoint"/>
<POI MapID="22" xpos="386.56" ypos="22.8853" zpos="0.0356077" type="legs.map.core.fireheart.all.wp" GUID="JfH0ag2ukEuGqO/DEzH9uA==" copy="[&BCUCAAA=]" copy-message="Simurgh Waypoint"/>
<POI MapID="22" xpos="-166.004" ypos="63.7151" zpos="549.944" type="legs.map.core.fireheart.all.wp" GUID="8UAo9BDKDU2EQxWzyJv93w==" copy="[&BCYCAAA=]" copy-message="Keeper's Waypoint"/>
<POI MapID="22" xpos="-732.818" ypos="54.4912" zpos="-705.231" type="legs.map.core.fireheart.all.wp" GUID="h0wrur3w6Eumlv/MAilEKw==" copy="[&BB0CAAA=]" copy-message="Apostate Waypoint"/>
<POI MapID="22" xpos="-201.393" ypos="23.4707" zpos="-135.377" type="legs.map.core.fireheart.all.wp" GUID="Ke8/Fnigh0aF2hObr8ULyQ==" copy="[&BB4CAAA=]" copy-message="Rustbowl Waypoint"/>
<POI MapID="22" xpos="-429.467" ypos="80.3202" zpos="808.972" type="legs.map.core.fireheart.all.wp" GUID="ojlpR8g9ski2W1hv1sSD8g==" copy="[&BB4CAAA=]" copy-message="Rustbowl Waypoint"/>
<POI MapID="22" xpos="153.193" ypos="19.3949" zpos="124.223" type="legs.map.core.fireheart.all" GUID="3kvvSUfVKEmi5pkvmybCeg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="22" xpos="-622.488" ypos="31.9906" zpos="289.457" type="legs.map.core.fireheart.all.mount.springer" GUID="Hxm/oVDeakqd0dYve9wuoQ=="/>
<!-- KRYTA -->
<Trail type="legs.map.core.bloodtide.run" trailData="Data/LadyElyssa/Map Completion/Bloodtide Coast to Orr.trl" color="99FFCC"/>
<Trail type="legs.map.core.bloodtide.all.number.1" trailData="Data/LadyElyssa/Map Completion/Bloodtide 1.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.2" trailData="Data/LadyElyssa/Map Completion/Bloodtide 2.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.3" trailData="Data/LadyElyssa/Map Completion/Bloodtide 3.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.4" trailData="Data/LadyElyssa/Map Completion/Bloodtide 4.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.5" trailData="Data/LadyElyssa/Map Completion/Bloodtide 5.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.6" trailData="Data/LadyElyssa/Map Completion/Bloodtide 6.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.7" trailData="Data/LadyElyssa/Map Completion/Bloodtide 7.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.8" trailData="Data/LadyElyssa/Map Completion/Bloodtide 8.trl" color="00FFFF"/>
<Trail type="legs.map.core.bloodtide.all.number.9" trailData="Data/LadyElyssa/Map Completion/Bloodtide 9.trl" color="00FFFF"/>
<POI MapID="73" xpos="227.694" ypos="19.8739" zpos="979.605" type="legs.map.core.bloodtide.all.start" GUID="lKVUucE8bkOgnBFO72Ecrg=="/>
<POI MapID="73" xpos="205.472" ypos="-0.13437" zpos="566.408" type="legs.map.core.bloodtide.all.wp" GUID="MK3Sz2yLT0asxTSrHrt/Wg==" iconFile="Data/LadyElyssa/Images/Icons/POI.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="73" xpos="201.357" ypos="-0.847127" zpos="563.313" type="legs.map.core.bloodtide.all.wp" GUID="qfudS02EqkCYwZUFeHVytg==" iconFile="Data/LadyElyssa/Images/Do Not Enter.png" mapVisibility="0" miniMapVisibility="0" fadeNear="1200" fadeFar="2400"/>
<POI MapID="73" xpos="730.906" ypos="26.2504" zpos="460.899" type="legs.map.core.bloodtide.all.wp" GUID="rCJ/wtQN20Cnl/fkyAiigQ==" copy="[&BKcBAAA=]" copy-message="Once Heart is Complete jump back to Remanda Waypoint"/>
<POI MapID="73" xpos="507.722" ypos="0.133353" zpos="312.173" type="legs.map.core.bloodtide.all.number.2" GUID="rcGpoSOCRUq2+n13V+r9OA=="/>
<POI MapID="73" xpos="468.617" ypos="31.9622" zpos="937.606" type="legs.map.core.bloodtide.all.mount.skyscale" GUID="AHh1PvsMI0+mXbhZz0tJYw=="/>
<POI MapID="73" xpos="559.285" ypos="32.6775" zpos="808.918" type="legs.map.core.bloodtide.all.mount.skyscale" GUID="Ps1uEJRgfkmwPckWiBoG4Q=="/>
<POI MapID="73" xpos="473.344" ypos="27.1811" zpos="418.918" type="legs.map.core.bloodtide.all.glider.medium" GUID="QiZ2H9sbvEqMSlzeMOYUIQ=="/>
<POI MapID="73" xpos="205.332" ypos="-0.141675" zpos="566.39" type="legs.map.core.bloodtide.all.wp" GUID="ddyCI1p49UGZOsVetrfOUA==" copy="[&BAsEAAA=]" copy-message="Deadend Waypoint"/>
<POI MapID="73" xpos="643.903" ypos="-1.04921" zpos="-112.704" type="legs.map.core.bloodtide.all.wp" GUID="8Y3WN1dvcUScEQkeaNMe6g==" copy="[&BKMBAAA=]" copy-message="Archen Foreland Waypoint"/>
<POI MapID="73" xpos="-130.901" ypos="3.56041" zpos="100.076" type="legs.map.core.bloodtide.all.heartinfo" GUID="Ql7auolS1ke5yz9nVgfPIg==" info="If the Taidha Covington Event is active

Follow Route 6 from WP and come back later." infoRange="10"/>
<POI MapID="73" xpos="-167.474" ypos="-0.831139" zpos="252.759" type="legs.map.core.bloodtide.all.wp" GUID="FZl1eDk3A0K+7sRWYGacWw==" copy="[&BKgBAAA=]" copy-message="Laughing Gull Waypoint"/>
<POI MapID="73" xpos="-197.953" ypos="49.6966" zpos="936.714" type="legs.map.core.bloodtide.all.wp" GUID="hsjWMJEkb0SJWqTBaF5Y6g==" copy="[&BKUBAAA=]" copy-message="Stormbluff Waypoint"/>
<POI MapID="73" xpos="-484.664" ypos="-52.731" zpos="156.64" type="legs.map.core.bloodtide.all.wp" GUID="cpWxdEScBEq0DUC215vd2g==" copy="[&BKkBAAA=]" copy-message="Barrier Camp Waypoint"/>
<POI MapID="73" xpos="-305.576" ypos="29.4681" zpos="-904.214" type="legs.map.core.bloodtide.all.wp" GUID="96TNK6R5SE610JCPL17/SQ==" copy="[&BKUBAAA=]" copy-message="Stormbluff Waypoint"/>
<POI MapID="73" xpos="-65.364" ypos="-250.688" zpos="-647.413" type="legs.map.core.bloodtide.all.wp" GUID="1U/hLzjcgE+DuKTn11uyrQ==" copy="[&BKoBAAA=]" copy-message="Firthside Vigil Waypoint"/>
<POI MapID="73" xpos="-486.996" ypos="-0.0619084" zpos="-1.54504" type="legs.map.core.bloodtide.all.mount.skimmer" GUID="5ok9SS06h0u/mtxsK5rrNw=="/>
<POI MapID="73" xpos="-344.262" ypos="2.89605" zpos="-773.708" type="legs.map.core.bloodtide.all.mount.springer" GUID="aq/y3mVnfEasROU5eNbkGw=="/>
<POI MapID="73" xpos="-334.137" ypos="28.384" zpos="-801.979" type="legs.map.core.bloodtide.all.mount.skyscale" GUID="t7/QlklI0EScu9roWlt2Ig=="/>
<POI MapID="73" xpos="221.463" ypos="14.5281" zpos="962.844" type="legs.map.core.bloodtide.all.number.3" GUID="9XmkdkrL00WmkFwSmz3cjw=="/>
<POI MapID="73" xpos="240.555" ypos="0.582461" zpos="688.034" type="legs.map.core.bloodtide.all.number.4" GUID="S/bRMvw1wUmW4Tw6T4Z3Qg=="/>
<POI MapID="73" xpos="54.318" ypos="36.3629" zpos="515.837" type="legs.map.core.bloodtide.all.number.5" GUID="In7qgvqXMU2rZQ9rkbvA/A=="/>
<POI MapID="73" xpos="-144.498" ypos="1.16142" zpos="88.1205" type="legs.map.core.bloodtide.all.number.6" GUID="KUOHrwx9ukSl+ZOtko52Fg=="/>
<POI MapID="73" xpos="-484.429" ypos="1.54319" zpos="-145.435" type="legs.map.core.bloodtide.all.number.7" GUID="bSsIcWe2CEmSlhcZjuBuQQ=="/>
<POI MapID="73" xpos="56.5099" ypos="36.3444" zpos="514.734" type="legs.map.core.bloodtide.all.number.8" GUID="WWq0utRJN0iBfeo/IgywCQ=="/>