-
Notifications
You must be signed in to change notification settings - Fork 7
/
data.snbt
3451 lines (3451 loc) · 447 KB
/
data.snbt
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
{
warps: {
"contests": { dim: "wc:playground", x: -1242, y: 20, z: -366, time: 1696965111170L, xRot: 12.000132f, yRot: -271.63876f }
"Wydman'sHeil": { dim: "wc:westeros", x: 7939, y: 94, z: 1671, time: 1696965111171L, xRot: 27.654705f, yRot: -121.15857f }
"greenwing": { dim: "wc:westeros", x: 4925, y: 58, z: -5337, time: 1696965111171L, xRot: -5.40003f, yRot: -101.09843f }
"ocfish7": { dim: "wc:westeros", x: 5139, y: 46, z: -2842, time: 1696965111171L, xRot: 37.64997f, yRot: 28.205475f }
"rlhamlet4": { dim: "wc:westeros", x: -6059, y: 55, z: 16097, time: 1696965111172L, xRot: 25.200014f, yRot: 88.58746f }
"snakewoodvillage": { dim: "wc:westeros", x: 6599, y: 40, z: 2276, time: 1696965111182L, xRot: -4.3491273f, yRot: 201.88281f }
"buckle": { dim: "wc:westeros", x: -446, y: 47, z: 6954, time: 1696965111182L, xRot: -2.9459715f, yRot: 223.2468f }
"bushymill": { dim: "wc:westeros", x: -552, y: 46, z: 13041, time: 1696965111184L, xRot: -15.750002f, yRot: -184.69026f }
"parchmentsseptry": { dim: "wc:westeros", x: 8640, y: 37, z: 15007, time: 1696965111185L, xRot: -6.1500654f, yRot: 262.98553f }
"inchfa3": { dim: "wc:westeros", x: -1217, y: 51, z: 13752, time: 1696965111186L, xRot: 13.650032f, yRot: 163.81784f }
"hogghall": { dim: "wc:westeros", x: 2772, y: 45, z: 10199, time: 1696965111186L, xRot: 4.950059f, yRot: -269.3611f }
"dgsheepfarm3": { dim: "wc:westeros", x: 7029, y: 73, z: 188, time: 1696965111186L, xRot: 40.183384f, yRot: -3.9844246f }
"Gonx": { dim: "wc:playground", x: -425, y: 21, z: 1067, time: 1696965111186L, xRot: 8.501816f, yRot: 178.3464f }
"WHSewers": { dim: "wc:westeros", x: 2398, y: 70, z: -2615, time: 1696965111187L, xRot: 5.250006f, yRot: -174.01752f }
"baelorsdeep": { dim: "wc:westeros", x: 2551, y: 4, z: 13235, time: 1696965111187L, xRot: 4.200115f, yRot: 88.25f }
"wendwatch1": { dim: "wc:westeros", x: 6825, y: 73, z: 13399, time: 1696965111188L, xRot: 19.80004f, yRot: -181.7093f }
"bbhamlet3": { dim: "wc:westeros", x: -1224, y: 40, z: 15906, time: 1696965111188L, xRot: 0.45005634f, yRot: 240.11755f }
"ofhf1": { dim: "wc:westeros", x: -5440, y: 79, z: 19770, time: 1696965111188L, xRot: 15.450007f, yRot: -270.30774f }
"1-Type\"/warp_map\"ForMapOfWarps": { dim: "wc:playground", x: 84, y: 91, z: -332, time: 1696965111188L, xRot: -3.6000087f, yRot: 179.91727f }
"hornhilltown3": { dim: "wc:westeros", x: -3693, y: 130, z: 20126, time: 1696965111188L, xRot: 39.899994f, yRot: 181.65979f }
"ywmine1": { dim: "wc:westeros", x: -458, y: 63, z: 22081, time: 1696965111200L, xRot: 25.199884f, yRot: -321.8123f }
"thornhill": { dim: "wc:westeros", x: -3692, y: 55, z: -11129, time: 1696965111200L, xRot: 6.74997f, yRot: -1.4963155f }
"toth": { dim: "wc:westeros", x: 3294, y: 137, z: 13393, time: 1696965111201L, xRot: -0.30000308f, yRot: -88.79061f }
"lordharrowaystown": { dim: "wc:westeros", x: 1383, y: 38, z: 7835, time: 1696965111201L, xRot: 7.799944f, yRot: 310.4906f }
"sshunt": { dim: "wc:westeros", x: 3007, y: 50, z: -246, time: 1696965111201L, xRot: 30f, yRot: 51.83789f }
"torentine": { dim: "wc:westeros", x: -3969, y: 35, z: 23296, time: 1696965111201L, xRot: 0.90001893f, yRot: -180.89786f }
"bucklerbay": { dim: "wc:westeros", x: -7390, y: 37, z: 17109, time: 1696965111202L, xRot: -5.8500032f, yRot: 315.64917f }
"bbhamlet5": { dim: "wc:westeros", x: -1377, y: 44, z: 16233, time: 1696965111202L, xRot: 3.000056f, yRot: -270.0367f }
"klwarriorsept": { dim: "wc:westeros", x: 3200, y: 89, z: 13186, time: 1696965111202L, xRot: -26.999996f, yRot: -87.09151f }
"hellholt": { dim: "wc:westeros", x: -196, y: 110, z: 24857, time: 1696965111203L, xRot: 12.3000765f, yRot: 90.92441f }
"nonos": { dim: "wc:playground", x: -1127, y: 21, z: 1161, time: 1696965111203L, xRot: 6.5999722f, yRot: -6.690853f }
"dwmmill1": { dim: "wc:westeros", x: -1795, y: 40, z: -7971, time: 1696965111203L, xRot: 8.466455f, yRot: -189.03935f }
"harlawhall": { dim: "wc:westeros", x: -5618, y: 37, z: 5583, time: 1696965111203L, xRot: 7.199996f, yRot: -276.90274f }
"nsmarcher3": { dim: "wc:westeros", x: -1224, y: 159, z: 21026, time: 1696965111203L, xRot: -5.250032f, yRot: 65.87878f }
"flotsam": { dim: "wc:westeros", x: -2065, y: 40, z: 5222, time: 1696965111204L, xRot: 16.799732f, yRot: 147.44089f }
"cnspec": { dim: "wc:westeros", x: 5611, y: 103, z: 18940, time: 1696965111204L, xRot: 9.749965f, yRot: -258.4753f }
"ginalley": { dim: "wc:westeros", x: 3212, y: 52, z: 12936, time: 1696965111204L, xRot: -5.8499823f, yRot: -270.6917f }
"runestone": { dim: "wc:westeros", x: 8945, y: 57, z: 5133, time: 1696965111204L, xRot: -6.2585964f, yRot: -78.008606f }
"sshf1": { dim: "wc:westeros", x: -9739, y: 69, z: -6621, time: 1696965111204L, xRot: -9.750017f, yRot: -239.70001f }
"dwm1": { dim: "wc:westeros", x: -2370, y: 44, z: -8823, time: 1696965111204L, xRot: 13.90833f, yRot: -92.70516f }
"lakeferry": { dim: "wc:westeros", x: -5440, y: 35, z: -7476, time: 1696965111216L, xRot: 1.050019f, yRot: 243.61517f }
"newtest": { dim: "wc:playground", x: 49, y: 21, z: 105, time: 1696965111216L, xRot: 2.9999795f, yRot: 183.00291f }
"wfsheepfarm3": { dim: "wc:westeros", x: -712, y: 76, z: -8181, time: 1696965111217L, xRot: 46.049946f, yRot: -45.026012f }
"lemonwood": { dim: "wc:westeros", x: 7936, y: 46, z: 25561, time: 1696965111217L, xRot: 2.399721f, yRot: 359.9734f }
"rillshunting1": { dim: "wc:westeros", x: -5598, y: 59, z: -7708, time: 1696965111217L, xRot: -4.0499253f, yRot: -314.08362f }
"wfbattlementsgate": { dim: "wc:westeros", x: -1179, y: 79, z: -8615, time: 1696965111218L, xRot: 15.449984f, yRot: 1.1743642f }
"mooreseptry": { dim: "wc:westeros", x: 8658, y: 45, z: 4225, time: 1696965111218L, xRot: 0.11542440950870514f, yRot: 2.4333672523498535f }
"gradient": { dim: "wc:playground", x: -1090, y: 21, z: 909, time: 1696965111218L, xRot: 17.550074f, yRot: -0.5554199f }
"highhermitage": { dim: "wc:westeros", x: -3321, y: 74, z: 23377, time: 1696965111218L, xRot: 31.04985f, yRot: 244.97652f }
"ywtown": { dim: "wc:westeros", x: 513, y: 38, z: 22312, time: 1696965111218L, xRot: -8.699864f, yRot: -219.66713f }
"rmquarry1": { dim: "wc:westeros", x: 6957, y: 69, z: 7322, time: 1696965111219L, xRot: 11.549777f, yRot: -175.99765f }
"needlebridge": { dim: "wc:westeros", x: 5831, y: 42, z: 2885, time: 1696965111219L, xRot: -4.34912f, yRot: -107.41728f }
"sfhamlet2": { dim: "wc:westeros", x: -4100, y: 40, z: 23558, time: 1696965111219L, xRot: 5.099998f, yRot: 179.22241f }
"tawney": { dim: "wc:westeros", x: -6796, y: 36, z: 4926, time: 1696965111219L, xRot: -10.178153f, yRot: -287.69415f }
"cnh2": { dim: "wc:westeros", x: 6384, y: 87, z: 19054, time: 1696965111219L, xRot: 26.249973f, yRot: -174.15463f }
"newkeepquarry": { dim: "wc:westeros", x: 2732, y: 82, z: 1490, time: 1696965111219L, xRot: 39.299957f, yRot: 330.30338f }
"fmwh": { dim: "wc:westeros", x: -755, y: 76, z: 5949, time: 1696965111220L, xRot: 88.95f, yRot: 91.483154f }
"coldglen": { dim: "wc:westeros", x: -2258, y: 66, z: -6116, time: 1696965111220L, xRot: 2.7000077f, yRot: 299.82883f }
"pacmaneast": { dim: "wc:playground", x: -535, y: 21, z: 674, time: 1696965111220L, xRot: 4.3499975f, yRot: -268.44836f }
"dunstonburytest": { dim: "wc:playground", x: -955, y: 20, z: -1124, time: 1696965111220L, xRot: 54.14992f, yRot: -263.11f }
"eyriemule": { dim: "wc:westeros", x: 3848, y: 136, z: 6144, time: 1696965111220L, xRot: 6.2999935f, yRot: -331.19672f }
"arena": { dim: "wc:playground", x: -702, y: 25, z: 355, time: 1696965111220L, xRot: 11.249923f, yRot: 90.44978f }
"klmap": { dim: "wc:playground", x: 159, y: 55, z: -1063, time: 1696965111220L, xRot: -7.4999166f, yRot: 180.06616f }
"stonemill": { dim: "wc:westeros", x: -2156, y: 36, z: 8510, time: 1696965111220L, xRot: -11.850956f, yRot: -253.02052f }
"MountHelpme": { dim: "wc:westeros", x: -2924, y: 132, z: 12191, time: 1696965111221L, xRot: 20.399973f, yRot: 280.35168f }
"codd": { dim: "wc:westeros", x: -7398, y: 47, z: 4266, time: 1696965111221L, xRot: -17.69971f, yRot: -102.597015f }
"pfsept": { dim: "wc:westeros", x: 2266, y: 132, z: 18213, time: 1696965111221L, xRot: -11.441534f, yRot: -119.85808f }
"thamfast": { dim: "wc:westeros", x: 394, y: 72, z: 18971, time: 1696965111221L, xRot: 34.79996f, yRot: -258.14648f }
"ywhamlet2": { dim: "wc:westeros", x: -5538, y: 59, z: 7064, time: 1696965111221L, xRot: -44.70003f, yRot: 178.79494f }
"tallyhill": { dim: "wc:westeros", x: 7296, y: 67, z: 14708, time: 1696965111221L, xRot: 0.29986152f, yRot: 224.33493f }
"ahholdfast2": { dim: "wc:westeros", x: -1761, y: 46, z: 9605, time: 1696965111221L, xRot: 1.3500038f, yRot: 53.60824f }
"hove": { dim: "wc:westeros", x: -7800, y: 38, z: -360, time: 1696965111221L, xRot: -1.0527883f, yRot: -207.65405f }
"fayview": { dim: "wc:westeros", x: 7647, y: 38, z: -3833, time: 1696965111222L, xRot: 3.0000012f, yRot: -316.57672f }
"ladybright": { dim: "wc:westeros", x: -3043, y: 49, z: 26450, time: 1696965111222L, xRot: -3.4503109455108643f, yRot: 73.61771392822266f }
"lionsheadsquare": { dim: "wc:westeros", x: -7091, y: 43, z: 12120, time: 1696965111222L, xRot: 4.0499706f, yRot: -269.13397f }
"deepden": { dim: "wc:westeros", x: -3908, y: 68, z: 12092, time: 1696965111222L, xRot: -13.0912f, yRot: -149.99243f }
"rocktest": { dim: "wc:playground", x: 431, y: 32, z: -1257, time: 1696965111233L, xRot: 15.873249f, yRot: -177.57306f }
"torches": { dim: "wc:westeros", x: 4801, y: 44, z: -16061, time: 1696965111233L, xRot: 6.2998934f, yRot: 185.36678f }
"saltcliffe": { dim: "wc:westeros", x: -8736, y: 70, z: 6531, time: 1696965111233L, xRot: 21.149609f, yRot: -9.458984f }
"rhtown": { dim: "wc:westeros", x: 9091, y: 86, z: 18449, time: 1696965111233L, xRot: -27.551353f, yRot: 271.55154f }
"skyreach": { dim: "wc:westeros", x: -1881, y: 97, z: 22246, time: 1696965111234L, xRot: -23.549952f, yRot: 116.51172f }
"clawisle": { dim: "wc:westeros", x: 9955, y: 34, z: 8762, time: 1696965111234L, xRot: 7.5000534f, yRot: 312.26935f }
"hastwyck": { dim: "wc:westeros", x: -8256, y: 42, z: 19924, time: 1696965111234L, xRot: 17.681087f, yRot: 177.3235f }
"ballhamlet1": { dim: "wc:westeros", x: -5922, y: 43, z: 18875, time: 1696965111234L, xRot: -5.8440223f, yRot: -315.717f }
"whisperingwillow": { dim: "wc:westeros", x: -5586, y: 45, z: 15565, time: 1696965111234L, xRot: 6.000014f, yRot: -173.201f }
"jackwood": { dim: "wc:westeros", x: -5252, y: 75, z: -7538, time: 1696965111234L, xRot: -3.6094544f, yRot: 245.83759f }
"aberhold": { dim: "wc:westeros", x: -2681, y: 39, z: -6356, time: 1696965111234L, xRot: -1.0498537f, yRot: 95.194336f }
"SevenOaks": { dim: "wc:westeros", x: -7694, y: 39, z: 16480, time: 1696965111235L, xRot: -13.076689f, yRot: -173.63898f }
"lymansferry": { dim: "wc:westeros", x: -7119, y: 39, z: 20378, time: 1696965111235L, xRot: -5.8247066f, yRot: 192.31454f }
"BlackhavenHm2": { dim: "wc:westeros", x: 3014, y: 70, z: 19846, time: 1696965111235L, xRot: -5.099853f, yRot: -294.29962f }
"oldstonebridgeinn": { dim: "wc:westeros", x: 4671, y: 47, z: 12245, time: 1696965111235L, xRot: -5.619159f, yRot: -131.33853f }
"tumbledowntower": { dim: "wc:westeros", x: -1746, y: 40, z: -9127, time: 1696965111235L, xRot: 22.799965f, yRot: -81.75606f }
"dorrenswatch": { dim: "wc:westeros", x: 3214, y: 69, z: -5387, time: 1696965111235L, xRot: 0.29985827f, yRot: 0.7281189f }
"naggasribs": { dim: "wc:westeros", x: -8164, y: 65, z: 5060, time: 1696965111235L, xRot: -22.220417f, yRot: -137.86241f }
"dgq3": { dim: "wc:westeros", x: 6377, y: 70, z: 1258, time: 1696965111236L, xRot: 47.903755f, yRot: 190.4015f }
"deepwoodmotte": { dim: "wc:westeros", x: -4552, y: 84, z: -10687, time: 1696965111236L, xRot: -20.54982f, yRot: -0.89675903f }
"condon": { dim: "wc:westeros", x: 572, y: 43, z: -5831, time: 1696965111236L, xRot: 1.9499336f, yRot: -20.701904f }
"fwh3": { dim: "wc:westeros", x: -4536, y: 45, z: 14220, time: 1696965111236L, xRot: -14.250036f, yRot: 179.55008f }
"hornhillv8": { dim: "wc:westeros", x: -3791, y: 135, z: 20242, time: 1696965111236L, xRot: 30.749952f, yRot: -321.89038f }
"maegors": { dim: "wc:westeros", x: 3401, y: 123, z: 13444, time: 1696965111236L, xRot: -39.149975f, yRot: -190.94049f }
"overlookinn": { dim: "wc:westeros", x: 2521, y: 44, z: -12660, time: 1696965111236L, xRot: -17.099953f, yRot: -59.700085f }
"lthf3": { dim: "wc:westeros", x: -532, y: 64, z: 16237, time: 1696965111237L, xRot: 32.399952f, yRot: -186.59995f }
"dontforgetthisisntdone": { dim: "wc:westeros", x: -1141, y: 96, z: -9282, time: 1696965111237L, xRot: 55.912243f, yRot: -105.61731f }
"sunderly": { dim: "wc:westeros", x: -8440, y: 45, z: 6769, time: 1696965111237L, xRot: 0.45002764f, yRot: -89.998505f }
"fthc2": { dim: "wc:westeros", x: 3525, y: 45, z: 15579, time: 1696965111237L, xRot: -15.899956f, yRot: -135.77751f }
"wfmills": { dim: "wc:westeros", x: -1347, y: 96, z: -8212, time: 1696965111237L, xRot: 51.9f, yRot: -226.52548f }
"wall": { dim: "wc:westeros", x: 3195, y: 46, z: -16110, time: 1696965111237L, xRot: -48.59825f, yRot: -178.87749f }
"blackcrown": { dim: "wc:westeros", x: -9616, y: 55, z: 22537, time: 1696965111237L, xRot: -4.650017f, yRot: 312.0668f }
"rosby": { dim: "wc:westeros", x: 4174, y: 47, z: 12476, time: 1696965111238L, xRot: 0.23016521f, yRot: 77.94141f }
"mh1": { dim: "wc:westeros", x: -5170, y: 75, z: 9519, time: 1696965111238L, xRot: 8.549996f, yRot: 129.55464f }
"highpoint": { dim: "wc:westeros", x: -2644, y: 170, z: -9990, time: 1696965111238L, xRot: 12.14998f, yRot: -114.89968f }
"capekraken": { dim: "wc:westeros", x: -4992, y: 44, z: -1, time: 1696965111238L, xRot: 11.400012f, yRot: 8.849579f }
"woolstead": { dim: "wc:westeros", x: 4694, y: 34, z: -5215, time: 1696965111238L, xRot: 23.999987f, yRot: 359.70206f }
"baelish": { dim: "wc:westeros", x: 7655, y: 48, z: 642, time: 1696965111238L, xRot: 17.999985f, yRot: -94.78964f }
"antlers": { dim: "wc:westeros", x: 4161, y: 89, z: 10050, time: 1696965111238L, xRot: 1.800004243850708f, yRot: -179.72006225585938f }
"bbhamlet1": { dim: "wc:westeros", x: -1111, y: 37, z: 15392, time: 1696965111238L, xRot: -1.050083f, yRot: -4.2772827f }
"fthc3": { dim: "wc:westeros", x: 2260, y: 40, z: 15959, time: 1696965111239L, xRot: 9.299992f, yRot: -4.0925293f }
"sshf2": { dim: "wc:westeros", x: -9516, y: 74, z: -7165, time: 1696965111249L, xRot: -11.850001f, yRot: -246.44951f }
"cobblecover": { dim: "wc:westeros", x: -7302, y: 44, z: 16183, time: 1696965111250L, xRot: -3.9000165f, yRot: -92.34712f }
"oldantlers": { dim: "wc:playground", x: -631, y: 28, z: -546, time: 1696965111250L, xRot: -12.450009f, yRot: -268.94934f }
"corpselake": { dim: "wc:westeros", x: -8649, y: 95, z: 5959, time: 1696965111250L, xRot: -15.299997f, yRot: 183.29591f }
"cuyholdfast": { dim: "wc:westeros", x: -6301, y: 62, z: 24968, time: 1696965111250L, xRot: 13.950085f, yRot: -176.9483f }
"pvptest": { dim: "wc:playground", x: -836, y: 21, z: 187, time: 1696965111251L, xRot: 3.2999349f, yRot: 3.9001937f }
"blackpool": { dim: "wc:westeros", x: -451, y: 66, z: -5307, time: 1696965111251L, xRot: 3.6656854152679443f, yRot: 178.70899963378906f }
"marton": { dim: "wc:westeros", x: -5253, y: 46, z: -1284, time: 1696965111251L, xRot: -1.9066459f, yRot: -341.17157f }
"sharp": { dim: "wc:westeros", x: -8643, y: 42, z: 5616, time: 1696965111251L, xRot: -18.299978f, yRot: -17.453888f }
"bb": { dim: "wc:westeros", x: -1042, y: 36, z: 15471, time: 1696965111251L, xRot: 0.1500086f, yRot: -90.79113f }
"crakehall": { dim: "wc:westeros", x: -8137, y: 42, z: 14469, time: 1696965111251L, xRot: -14.546806f, yRot: -57.741776f }
"weepingtower": { dim: "wc:westeros", x: 7083, y: 37, z: 20685, time: 1696965111251L, xRot: -16.800018f, yRot: -335.72638f }
"fogmere": { dim: "wc:westeros", x: 7485, y: 60, z: 15978, time: 1696965111252L, xRot: 17.099998f, yRot: -72.21538f }
"chains": { dim: "wc:westeros", x: -1637, y: 42, z: -6131, time: 1696965111252L, xRot: -7.650002f, yRot: 43.177647f }
"wbhf6": { dim: "wc:westeros", x: -5991, y: 68, z: 16295, time: 1696965111252L, xRot: 64.19999f, yRot: 349.88754f }
"tobhomotts": { dim: "wc:westeros", x: 2453, y: 73, z: 13169, time: 1696965111252L, xRot: -33.89995f, yRot: -268.74335f }
"darry": { dim: "wc:westeros", x: 2116, y: 39, z: 7918, time: 1696965111252L, xRot: 1.8810883f, yRot: 277.98563f }
"byrchquarry": { dim: "wc:westeros", x: 3970, y: 44, z: 11703, time: 1696965111252L, xRot: 51.302517f, yRot: -173.46008f }
"brewer": { dim: "wc:westeros", x: 2878, y: 48, z: 12373, time: 1696965111252L, xRot: 3.9001002f, yRot: -1.680376f }
"bbholdfast2": { dim: "wc:westeros", x: -1260, y: 46, z: 16062, time: 1696965111253L, xRot: -3.4502196f, yRot: 271.15894f }
"whyisthishere": { dim: "wc:playground", x: -1038, y: 21, z: -336, time: 1696965111253L, xRot: 0.45001125f, yRot: -274.79916f }
"parchmentshf3": { dim: "wc:westeros", x: 8561, y: 48, z: 14969, time: 1696965111253L, xRot: 2.4000726f, yRot: 258.77924f }
"molestown": { dim: "wc:westeros", x: 3270, y: 47, z: -15698, time: 1696965111253L, xRot: 0.1497121f, yRot: -42.150505f }
"stonedoor": { dim: "wc:westeros", x: 1432, y: 48, z: -16024, time: 1696965111253L, xRot: -10.800031f, yRot: 205.76723f }
"inchfield": { dim: "wc:westeros", x: -1142, y: 45, z: 14225, time: 1696965111253L, xRot: 7.649946f, yRot: 95.85855f }
"moorecabin1": { dim: "wc:westeros", x: 8792, y: 40, z: 3811, time: 1696965111253L, xRot: -20.416708f, yRot: -118.05588f }
"tudbury": { dim: "wc:westeros", x: 6391, y: 35, z: 21020, time: 1696965111253L, xRot: -2.1000338f, yRot: 269.6439f }
"harrenhalparkour": { dim: "wc:westeros", x: 1901, y: 47, z: 9219, time: 1696965111254L, xRot: 5.759484f, yRot: 267.32455f }
"nshf": { dim: "wc:westeros", x: -2013, y: 81, z: 20669, time: 1696965111254L, xRot: 20.39999f, yRot: -349.1716f }
"redforttown": { dim: "wc:westeros", x: 5854, y: 50, z: 6395, time: 1696965111254L, xRot: 30.753174f, yRot: -1.6840931f }
"yarwyck": { dim: "wc:westeros", x: -5365, y: 63, z: 7376, time: 1696965111254L, xRot: 0.59995747f, yRot: -64.37305f }
"lancewood": { dim: "wc:westeros", x: -3306, y: 61, z: 7981, time: 1696965111254L, xRot: -1.8295329809188843f, yRot: -33.91456604003906f }
"griffinstown": { dim: "wc:westeros", x: 6277, y: 51, z: 17305, time: 1696965111254L, xRot: 2.3999991f, yRot: 66.04016f }
"playground": { dim: "wc:playground", x: -988, y: 21, z: -319, time: 1696965111254L, xRot: -0.45000577f, yRot: -2.0993676f }
"mulberry": { dim: "wc:westeros", x: -2077, y: 50, z: 14437, time: 1696965111254L, xRot: 11.099978f, yRot: -299.53284f }
"ravenwood": { dim: "wc:westeros", x: 6316, y: 49, z: -5619, time: 1696965111255L, xRot: 8.850065f, yRot: 185.24962f }
"wfc": { dim: "wc:westeros", x: -1105, y: 68, z: -8542, time: 1696965111255L, xRot: 39.899967f, yRot: -272.11594f }
"sghamlet2": { dim: "wc:westeros", x: -3947, y: 59, z: 4569, time: 1696965111255L, xRot: 12.449906f, yRot: 1.0246277f }
"siegetest": { dim: "wc:playground", x: -763, y: 21, z: 951, time: 1696965111255L, xRot: -5.3999953f, yRot: -179.0546f }
"camden": { dim: "wc:westeros", x: 548, y: 52, z: 18356, time: 1696965111255L, xRot: -8.550001f, yRot: 175.68668f }
"nshamlet1": { dim: "wc:westeros", x: 1993, y: 50, z: 3615, time: 1696965111255L, xRot: 24.59993f, yRot: 191.45573f }
"oldgate": { dim: "wc:westeros", x: 2903, y: 43, z: 12618, time: 1696965111255L, xRot: 7.7999687f, yRot: -13.745392f }
"grassfieldkeep": { dim: "wc:westeros", x: 1380, y: 64, z: 16186, time: 1696965111255L, xRot: -28.047817f, yRot: -41.838634f }
"lth1": { dim: "wc:westeros", x: -440, y: 57, z: 16533, time: 1696965111255L, xRot: 34.19998f, yRot: -183.6554f }
"oldstones": { dim: "wc:westeros", x: -1525, y: 39, z: 5579, time: 1696965111267L, xRot: -16.800308f, yRot: 101.15259f }
"runnybrook": { dim: "wc:westeros", x: -7690, y: 41, z: 19971, time: 1696965111267L, xRot: 15.449949f, yRot: -19.630981f }
"donnigerq1": { dim: "wc:westeros", x: 6376, y: 70, z: 1257, time: 1696965111267L, xRot: 27.150007f, yRot: 18.922092f }
"failwood": { dim: "wc:westeros", x: 5226, y: 74, z: 16228, time: 1696965111267L, xRot: 4.5891085f, yRot: -139.82324f }
"haystackhall3": { dim: "wc:westeros", x: 6495, y: 44, z: 15311, time: 1696965111267L, xRot: 9.749967f, yRot: -201.99838f }
"redding": { dim: "wc:westeros", x: -3532, y: 112, z: 15591, time: 1696965111267L, xRot: -16.80021f, yRot: 359.51306f }
"longshipguide": { dim: "wc:playground", x: 682, y: 25, z: -965, time: 1696965111268L, xRot: -2.6998923f, yRot: -270.38193f }
"drinkwater": { dim: "wc:westeros", x: 132, y: 36, z: 22442, time: 1696965111268L, xRot: 1.7998734f, yRot: -90.46383f }
"mosshamlet1": { dim: "wc:westeros", x: 793, y: 38, z: -5383, time: 1696965111268L, xRot: 4.350008f, yRot: 79.28506f }
"felwood1": { dim: "wc:westeros", x: 5455, y: 93, z: 16635, time: 1696965111268L, xRot: 16.949442f, yRot: -306.02594f }
"icemark": { dim: "wc:westeros", x: 1765, y: 49, z: -16011, time: 1696965111268L, xRot: -13.949972f, yRot: -169.39673f }
"southshore": { dim: "wc:westeros", x: -8155, y: 35, z: -2556, time: 1696965111268L, xRot: -9.8999605f, yRot: -89.00339f }
"table": { dim: "wc:playground", x: -731, y: 52, z: -1389, time: 1696965111268L, xRot: 10.881281f, yRot: -3.458252f }
"tarthv4": { dim: "wc:westeros", x: 9988, y: 88, z: 16584, time: 1696965111268L, xRot: 29.452614f, yRot: 1.7807914f }
"stonehelm": { dim: "wc:westeros", x: 4252, y: 37, z: 19493, time: 1696965111269L, xRot: -10.155318260192871f, yRot: 104.54840087890625f }
"klwesterndefences": { dim: "wc:westeros", x: 1117, y: 36, z: 12345, time: 1696965111269L, xRot: 39.65622f, yRot: -72.16658f }
"sevenstreams": { dim: "wc:westeros", x: -1552, y: 35, z: 5284, time: 1696965111269L, xRot: 3.2997503f, yRot: 356.391f }
"oxmoor": { dim: "wc:westeros", x: 4868, y: 47, z: -7745, time: 1696965111270L, xRot: -0.9001288f, yRot: -90.45364f }
"inchv1": { dim: "wc:westeros", x: -1409, y: 43, z: 14416, time: 1696965111270L, xRot: 2.1000204f, yRot: -107.3831f }
"greenguard": { dim: "wc:westeros", x: 5069, y: 50, z: -16026, time: 1696965111270L, xRot: -13.500008f, yRot: 174.86694f }
"khhf2": { dim: "wc:westeros", x: 8874, y: 102, z: -9285, time: 1696965111270L, xRot: -4.950021f, yRot: 0.7642212f }
"summerwood": { dim: "wc:westeros", x: -4018, y: 68, z: 11291, time: 1696965111270L, xRot: 18.750001907348633f, yRot: -57.741851806640625f }
"harvesthhm1": { dim: "wc:westeros", x: 34, y: 117, z: 19239, time: 1696965111270L, xRot: 30.449944f, yRot: -0.29986572f }
"lpvineyard1": { dim: "wc:westeros", x: -7536, y: 59, z: 12586, time: 1696965111270L, xRot: -18.080116f, yRot: -2.5918355f }
"whf1": { dim: "wc:westeros", x: -5011, y: 73, z: -2087, time: 1696965111270L, xRot: 22.210669f, yRot: -79.24099f }
"moondoor": { dim: "wc:westeros", x: 3878, y: 167, z: 6177, time: 1696965111271L, xRot: -1.1999997f, yRot: 90.44166f }
"lordsport": { dim: "wc:westeros", x: -7584, y: 37, z: 6216, time: 1696965111271L, xRot: -3.600026f, yRot: -92.85046f }
"grellvillage": { dim: "wc:westeros", x: -1565, y: 38, z: 7497, time: 1696965111271L, xRot: 1.9499767f, yRot: -130.02594f }
"sgcabin2": { dim: "wc:westeros", x: -4013, y: 78, z: 4201, time: 1696965111272L, xRot: 45.750023f, yRot: -345.31586f }
"siege": { dim: "wc:playground", x: -763, y: 21, z: 951, time: 1696965111272L, xRot: -5.3999953f, yRot: -179.0546f }
"wfkingsroadgate": { dim: "wc:westeros", x: -954, y: 79, z: -8518, time: 1696965111272L, xRot: 20.09999f, yRot: -272.11557f }
"ywmarsh": { dim: "wc:westeros", x: -277, y: 72, z: 22122, time: 1696965111283L, xRot: 46.64999f, yRot: 164.92851f }
"SoF": { dim: "wc:westeros", x: 3093, y: 70, z: 12875, time: 1696965111283L, xRot: 10.799933f, yRot: 297.20184f }
"bhf1": { dim: "wc:westeros", x: -5782, y: 68, z: 18930, time: 1696965111283L, xRot: 43.805965f, yRot: -176.3674f }
"baelor": { dim: "wc:westeros", x: 2560, y: 77, z: 13082, time: 1696965111283L, xRot: -15.15f, yRot: -1.0316094f }
"rhhamlet3": { dim: "wc:westeros", x: 8405, y: 40, z: 18586, time: 1696965111284L, xRot: 36.721207f, yRot: 351.4731f }
"Wydmanhamlet2": { dim: "wc:westeros", x: 9251, y: 51, z: 730, time: 1696965111284L, xRot: 26.485954f, yRot: -301.76874f }
"klmothersept": { dim: "wc:westeros", x: 2497, y: 53, z: 12904, time: 1696965111284L, xRot: -9.899926f, yRot: -173.34758f }
"rules": { dim: "wc:playground", x: -22, y: 145, z: -32, time: 1696965111284L, xRot: 0.30002064f, yRot: -179.84673f }
"mancescamp2": { dim: "wc:westeros", x: -1237, y: 58, z: -20917, time: 1696965111284L, xRot: 18.59994f, yRot: -175.68323f }
"ducks": { dim: "wc:playground", x: -853, y: 50, z: 236, time: 1696965111284L, xRot: 8.249899f, yRot: 105.45027f }
"lpvineyard": { dim: "wc:westeros", x: -7088, y: 55, z: 11708, time: 1696965111284L, xRot: -4.650221f, yRot: 201.16394f }
"lightfoot": { dim: "wc:westeros", x: -1475, y: 89, z: -4892, time: 1696965111285L, xRot: 18.105154037475586f, yRot: 163.0976104736328f }
"plummham2": { dim: "wc:westeros", x: -6554, y: 51, z: 14925, time: 1696965111285L, xRot: 30.59987f, yRot: -146.54979f }
"ahhamlet1": { dim: "wc:westeros", x: -1029, y: 45, z: 9927, time: 1696965111285L, xRot: -9.000001f, yRot: 257.54358f }
"bbholdfast3": { dim: "wc:westeros", x: -718, y: 38, z: 16019, time: 1696965111285L, xRot: -2.1000197f, yRot: -276.05597f }
"casterlyrock": { dim: "wc:westeros", x: -7619, y: 64, z: 11774, time: 1696965111285L, xRot: -12.900322f, yRot: 40.046173f }
"Oldforge": { dim: "wc:westeros", x: -896, y: 54, z: 6382, time: 1696965111285L, xRot: 2.0305123f, yRot: -268.84308f }
"oawine": { dim: "wc:westeros", x: 7022, y: 48, z: 4130, time: 1696965111285L, xRot: 42.75004f, yRot: -178.92041f }
"whiterun": { dim: "wc:westeros", x: 6594, y: 45, z: -12215, time: 1696965111285L, xRot: -0.8999691f, yRot: -7.683907f }
"mancescamp4": { dim: "wc:westeros", x: -1553, y: 68, z: -20580, time: 1696965111285L, xRot: 31.95001f, yRot: 115.767136f }
"yelvin1": { dim: "wc:westeros", x: -5975, y: 107, z: 22759, time: 1696965111286L, xRot: 31.345407f, yRot: -180.4964f }
"dunwick": { dim: "wc:westeros", x: -410, y: 47, z: 16227, time: 1696965111286L, xRot: -2.3560846f, yRot: -87.307846f }
"burntbridge": { dim: "wc:westeros", x: 1329, y: 35, z: 11303, time: 1696965111286L, xRot: 0.000038647653f, yRot: -220.19884f }
"manning": { dim: "wc:westeros", x: 5357, y: 52, z: 13718, time: 1696965111286L, xRot: 1.20001f, yRot: 47.942413f }
"lthf2": { dim: "wc:westeros", x: -628, y: 48, z: 16076, time: 1696965111286L, xRot: 23.09999f, yRot: -181.4062f }
"sgmill1": { dim: "wc:westeros", x: -2215, y: 79, z: 4131, time: 1696965111286L, xRot: 34.499958f, yRot: -87.44998f }
"drox": { dim: "wc:westeros", x: -6911, y: 48, z: 10031, time: 1696965111287L, xRot: 5.0840983f, yRot: -249.69847f }
"naggas": { dim: "wc:westeros", x: -8164, y: 65, z: 5060, time: 1696965111287L, xRot: -22.220417f, yRot: -137.86241f }
"yelshire": { dim: "wc:westeros", x: -6542, y: 103, z: 22684, time: 1696965111287L, xRot: 4.1932697f, yRot: -50.9875f }
"ciderwell": { dim: "wc:westeros", x: -7880, y: 40, z: 16839, time: 1696965111287L, xRot: 6.7499747f, yRot: -177.8727f }
"sprawlvillage": { dim: "wc:westeros", x: 3677, y: 47, z: 12451, time: 1696965111287L, xRot: 4.8002815f, yRot: -194.7351f }
"fordtest": { dim: "wc:playground", x: -1684, y: 29, z: 887, time: 1696965111287L, xRot: 22.649996f, yRot: -265.71674f }
"klhamlet2": { dim: "wc:westeros", x: 3129, y: 45, z: 12371, time: 1696965111287L, xRot: -6.299944f, yRot: -0.5458781f }
"galleyguide": { dim: "wc:playground", x: 679, y: 25, z: -788, time: 1696965111287L, xRot: 44.700012f, yRot: -271.68182f }
"khlc1": { dim: "wc:westeros", x: 7124, y: 46, z: -9041, time: 1696965111287L, xRot: 15.599916f, yRot: -173.41632f }
"HayfordBrick2": { dim: "wc:westeros", x: 2225, y: 43, z: 11880, time: 1696965111288L, xRot: 25.049965f, yRot: 112.808716f }
"rust": { dim: "wc:playground", x: -1087, y: 31, z: 191, time: 1696965111288L, xRot: -4.199969f, yRot: -347.20502f }
"branche": { dim: "wc:westeros", x: -7502, y: 85, z: 16899, time: 1696965111288L, xRot: 19.476604f, yRot: 184.19446f }
"woodswatch": { dim: "wc:westeros", x: 3807, y: 48, z: -16082, time: 1696965111288L, xRot: -5.700133f, yRot: 179.81763f }
"ashfordlog1": { dim: "wc:westeros", x: -874, y: 44, z: 18203, time: 1696965111288L, xRot: 4.2004538f, yRot: -176.51018f }
"shawney": { dim: "wc:westeros", x: 1139, y: 44, z: 7431, time: 1696965111288L, xRot: -14.550024f, yRot: -43.05179f }
"towerofthehand": { dim: "wc:westeros", x: 3295, y: 137, z: 13393, time: 1696965111288L, xRot: -0.30000308f, yRot: -88.79061f }
"frostlodgeinn": { dim: "wc:westeros", x: 1273, y: 45, z: -10968, time: 1696965111288L, xRot: -8.250236f, yRot: 97.95784f }
"gradientguide": { dim: "wc:playground", x: -1090, y: 20, z: 909, time: 1696965111289L, xRot: 6.3000193f, yRot: 0.4955194f }
"ltvineyard": { dim: "wc:westeros", x: -957, y: 92, z: 17182, time: 1696965111289L, xRot: 26.39999f, yRot: -286.40445f }
"dothrakisea": { dim: "wc:playground", x: -1784, y: 21, z: 1120, time: 1696965111289L, xRot: 12.900692f, yRot: 251.59584f }
"pinewatch": { dim: "wc:westeros", x: 5185, y: 45, z: -5932, time: 1696965111300L, xRot: 3.300616f, yRot: 4.9473147f }
"moorefarm1": { dim: "wc:westeros", x: 9315, y: 41, z: 3852, time: 1696965111301L, xRot: 4.0072474f, yRot: -106.196526f }
"Barrowton": { dim: "wc:westeros", x: -3917, y: 39, z: -3913, time: 1696965111301L, xRot: -25.50042f, yRot: 264.3233f }
"bhseptry": { dim: "wc:westeros", x: 2345, y: 72, z: 19488, time: 1696965111301L, xRot: 17.25006f, yRot: -145.79999f }
"wwhunting4": { dim: "wc:westeros", x: 5641, y: 53, z: -7060, time: 1696965111302L, xRot: -11.699992f, yRot: -216.4436f }
"kllumbermill": { dim: "wc:westeros", x: 1902, y: 37, z: 12521, time: 1696965111302L, xRot: -6.450073f, yRot: -268.83032f }
"dwmhunting3": { dim: "wc:westeros", x: -4318, y: 100, z: -7178, time: 1696965111302L, xRot: -3.450076f, yRot: 42.444138f }
"cobblerssquare": { dim: "wc:westeros", x: 2567, y: 44, z: 12794, time: 1696965111302L, xRot: -22.049925f, yRot: -294.99777f }
"wendwater": { dim: "wc:westeros", x: 6403, y: 38, z: 14059, time: 1696965111303L, xRot: -0.45001584f, yRot: 243.2415f }
"kthamlet2": { dim: "wc:westeros", x: 7908, y: 50, z: 19471, time: 1696965111303L, xRot: 4.949994f, yRot: 90.286255f }
"villageholdfast": { dim: "wc:westeros", x: 2945, y: 42, z: 8391, time: 1696965111303L, xRot: 25.34446f, yRot: 11.620693f }
"lhtvillage3": { dim: "wc:westeros", x: 995, y: 44, z: 7687, time: 1696965111303L, xRot: 12.150029f, yRot: -317.24963f }
"brindlewood": { dim: "wc:westeros", x: 2569, y: 48, z: 11976, time: 1696965111303L, xRot: 6.2704463f, yRot: -240.99963f }
"hetherspoon": { dim: "wc:westeros", x: -6907, y: 66, z: 12799, time: 1696965111303L, xRot: 5.849997f, yRot: -83.69558f }
"csham1": { dim: "wc:westeros", x: -1561, y: 55, z: 18791, time: 1696965111304L, xRot: 8.250253f, yRot: 108.11776f }
"ruttiger": { dim: "wc:westeros", x: -6524, y: 61, z: 12133, time: 1696965111304L, xRot: -24.000006f, yRot: 0.9277879f }
"hellholt2": { dim: "wc:westeros", x: -430, y: 116, z: 24787, time: 1696965111304L, xRot: 38.399765f, yRot: -12.326965f }
"probieground": { dim: "wc:playground", x: -1148, y: 20, z: -20, time: 1696965111304L, xRot: 4.499969f, yRot: -214.04968f }
"weepingholdfast": { dim: "wc:westeros", x: 7779, y: 44, z: 20779, time: 1696965111304L, xRot: -2.0997288f, yRot: -48.41349f }
"dwmhunting5": { dim: "wc:westeros", x: -5476, y: 46, z: -9826, time: 1696965111304L, xRot: -3.7499602f, yRot: 142.63994f }
"haystackhall": { dim: "wc:westeros", x: 6946, y: 62, z: 15514, time: 1696965111304L, xRot: -11.51527f, yRot: -117.552505f }
"dragonpit": { dim: "wc:westeros", x: 3101, y: 95, z: 12811, time: 1696965111305L, xRot: 17.400038f, yRot: 270.20798f }
"hawksheath": { dim: "wc:westeros", x: 2215, y: 54, z: -5851, time: 1696965111305L, xRot: -1.7999495f, yRot: -131.5357f }
"ashfordhunt2": { dim: "wc:westeros", x: -881, y: 55, z: 18017, time: 1696965111305L, xRot: 3.9000678f, yRot: -184.91364f }
"birdwatch": { dim: "wc:westeros", x: 3942, y: 106, z: -8348, time: 1696965111305L, xRot: 3.150917f, yRot: 236.83788f }
"horpe": { dim: "wc:westeros", x: 4749, y: 36, z: 20117, time: 1696965111305L, xRot: -5.999999f, yRot: -179.75421f }
"princespass": { dim: "wc:westeros", x: -1798, y: 64, z: 21313, time: 1696965111305L, xRot: 5.2390933f, yRot: 13.744623f }
"applebrook": { dim: "wc:westeros", x: -2043, y: 46, z: 14150, time: 1696965111316L, xRot: 13.499779f, yRot: 111.17586f }
"northwick": { dim: "wc:westeros", x: 7480, y: 40, z: 7013, time: 1696965111316L, xRot: -2.6998122f, yRot: 205.15407f }
"morne": { dim: "wc:westeros", x: 9595, y: 79, z: 16242, time: 1696965111317L, xRot: 2.1064284f, yRot: 182.88383f }
"donniger": { dim: "wc:westeros", x: 7930, y: 36, z: -123, time: 1696965111317L, xRot: 0.14987555f, yRot: 38.45577f }
"winterfell": { dim: "wc:westeros", x: -1173, y: 55, z: -8314, time: 1696965111317L, xRot: -22.34998f, yRot: 175.63445f }
"pendrichills": { dim: "wc:westeros", x: -5100, y: 89, z: 8555, time: 1696965111317L, xRot: 11.3842125f, yRot: 177.76231f }
"grafton": { dim: "wc:westeros", x: 8855, y: 86, z: 5883, time: 1696965111317L, xRot: -26.764198f, yRot: 67.00357f }
"reddeerisland": { dim: "wc:westeros", x: 535, y: 40, z: 7254, time: 1696965111317L, xRot: 9.749989f, yRot: -167.24982f }
"mandergate": { dim: "wc:westeros", x: -2060, y: 36, z: 16654, time: 1696965111317L, xRot: -10.049992f, yRot: -228.62354f }
"hornhillv3": { dim: "wc:westeros", x: -4533, y: 93, z: 19310, time: 1696965111318L, xRot: 43.19999f, yRot: -4.6442895f }
"shandystone": { dim: "wc:westeros", x: 7554, y: 57, z: 24597, time: 1696965111318L, xRot: -4.1218486f, yRot: 146.24387f }
"whitewood": { dim: "wc:westeros", x: -2848, y: 55, z: 8076, time: 1696965111318L, xRot: 13.649856f, yRot: 193.95662f }
"highhermvillage1": { dim: "wc:westeros", x: -3551, y: 58, z: 23446, time: 1696965111318L, xRot: -9.00023f, yRot: -79.22266f }
"seaspur": { dim: "wc:westeros", x: 8899, y: 100, z: 20236, time: 1696965111318L, xRot: -10.350669f, yRot: -57.626045f }
"willumkeep": { dim: "wc:westeros", x: 1578, y: 74, z: 17662, time: 1696965111318L, xRot: -18.299997f, yRot: -279.44724f }
"follardhf2": { dim: "wc:westeros", x: 7688, y: 100, z: 13568, time: 1696965111318L, xRot: 6.900137f, yRot: 2.0948045f }
"moorehamlet1": { dim: "wc:westeros", x: 9247, y: 35, z: 4138, time: 1696965111318L, xRot: 7.1811323f, yRot: -37.924156f }
"silverpeak": { dim: "wc:westeros", x: 5226, y: 102, z: 19231, time: 1696965111319L, xRot: 6.750097f, yRot: -271.76978f }
"ulhc1": { dim: "wc:westeros", x: -6491, y: 42, z: 21534, time: 1696965111319L, xRot: 24.149961f, yRot: -91.168945f }
"appletonfish1": { dim: "wc:westeros", x: 720, y: 48, z: 18501, time: 1696965111319L, xRot: 47.100586f, yRot: -126.413734f }
"sfhamlet4": { dim: "wc:westeros", x: -4014, y: 62, z: 23908, time: 1696965111319L, xRot: 4.350054f, yRot: 86.822784f }
"ironisles": { dim: "wc:westeros", x: -7511, y: 108, z: 6578, time: 1696965111319L, xRot: -13.350012f, yRot: 12.599567f }
"skycells": { dim: "wc:westeros", x: 3879, y: 159, z: 6167, time: 1696965111319L, xRot: 6.5999794f, yRot: 87.90325f }
"stonegarden": { dim: "wc:westeros", x: -7745, y: 127, z: 11876, time: 1696965111319L, xRot: 18.149782f, yRot: -339.58057f }
"riften": { dim: "wc:playground", x: -1126, y: 21, z: 651, time: 1696965111319L, xRot: 0.74967414f, yRot: -114.29974f }
"baratheon1": { dim: "wc:westeros", x: 6811, y: 44, z: 17172, time: 1696965111319L, xRot: 34.350002f, yRot: -92.29602f }
"chlumber": { dim: "wc:westeros", x: -7866, y: 44, z: 13946, time: 1696965111319L, xRot: 17.549994f, yRot: -172.64156f }
"hornhillv1": { dim: "wc:westeros", x: -4786, y: 91, z: 19776, time: 1696965111319L, xRot: 35.84999f, yRot: -239.75018f }
"harbesthall": { dim: "wc:westeros", x: 953, y: 100, z: 19205, time: 1696965111319L, xRot: -4.650022f, yRot: -190.34903f }
"klmanse2": { dim: "wc:westeros", x: 2577, y: 50, z: 12482, time: 1696965111319L, xRot: 6.300081f, yRot: -219.03229f }
"septguide": { dim: "wc:playground", x: -960, y: 21, z: 1104, time: 1696965111320L, xRot: 4.6500015f, yRot: 236.7448f }
"horpei1": { dim: "wc:westeros", x: 5024, y: 85, z: 20511, time: 1696965111320L, xRot: -7.949916f, yRot: -1.1055409f }
"weepingfarm": { dim: "wc:westeros", x: 7468, y: 50, z: 20517, time: 1696965111321L, xRot: -0.89997995f, yRot: 252.43811f }
"Oakglade": { dim: "wc:westeros", x: 5604, y: 46, z: 19500, time: 1696965111321L, xRot: 16.050203f, yRot: -79.00541f }
"Ruthermontwaycastle": { dim: "wc:westeros", x: 6669, y: 106, z: 6941, time: 1696965111321L, xRot: 26.782711f, yRot: -242.3956f }
"hhhermitage": { dim: "wc:westeros", x: 4646, y: 112, z: 4058, time: 1696965111321L, xRot: -9.360717f, yRot: 94.45126f }
"ForesterCabin": { dim: "wc:westeros", x: 1308, y: 38, z: 11011, time: 1696965111321L, xRot: 40.50001f, yRot: 50.525696f }
"sghamlet7": { dim: "wc:westeros", x: -2144, y: 89, z: 3730, time: 1696965111321L, xRot: 5.699849f, yRot: 95.70328f }
"tarthv1": { dim: "wc:westeros", x: 9398, y: 76, z: 16414, time: 1696965111321L, xRot: 25.313986f, yRot: 179.95004f }
"gradients": { dim: "wc:playground", x: -1091, y: 21, z: 910, time: 1696965111321L, xRot: 5.55002f, yRot: 0.49551937f }
"baelors": { dim: "wc:westeros", x: 2560, y: 77, z: 13081, time: 1696965111321L, xRot: -20.249998f, yRot: -1.7816093f }
"whitecliff": { dim: "wc:westeros", x: -4386, y: 55, z: 4449, time: 1696965111321L, xRot: -10.050099f, yRot: -228.1713f }
"fairisle": { dim: "wc:westeros", x: -8108, y: 35, z: 10438, time: 1696965111322L, xRot: 1.3499963f, yRot: 167.6036f }
"rainhouse": { dim: "wc:westeros", x: 8912, y: 56, z: 18530, time: 1696965111322L, xRot: -6.115107f, yRot: -181.45264f }
"sthham2": { dim: "wc:westeros", x: -6323, y: 87, z: 16612, time: 1696965111322L, xRot: 64.963104f, yRot: -1.7761585f }
"reekdungeon": { dim: "wc:westeros", x: 4373, y: 65, z: -9186, time: 1696965111322L, xRot: 12.000171f, yRot: -90.2789f }
"mancescamp1": { dim: "wc:westeros", x: -1485, y: 60, z: -20265, time: 1696965111322L, xRot: 15.749969f, yRot: -222.64001f }
"kltestold": { dim: "wc:playground", x: -490, y: 21, z: -462, time: 1696965111322L, xRot: -7.350004f, yRot: 268.8008f }
"highheart": { dim: "wc:westeros", x: -1172, y: 125, z: 8957, time: 1696965111322L, xRot: -2.7868268f, yRot: 222.00117f }
"longbowhall": { dim: "wc:westeros", x: 8168, y: 81, z: 3020, time: 1696965111322L, xRot: 10.052238f, yRot: -184.04846f }
"northhall": { dim: "wc:westeros", x: 6092, y: 64, z: -11300, time: 1696965111333L, xRot: -4.1999555f, yRot: -232.08746f }
"hornhillv5": { dim: "wc:westeros", x: -4073, y: 138, z: 19483, time: 1696965111333L, xRot: 38.84992f, yRot: 165.15625f }
"ulm1": { dim: "wc:westeros", x: -5979, y: 38, z: 22019, time: 1696965111334L, xRot: 63.149956f, yRot: -180.26978f }
"hornsclearing": { dim: "wc:westeros", x: 2308, y: 69, z: -8253, time: 1696965111334L, xRot: -4.200021f, yRot: -303.2533f }
"poddingfieldcastle": { dim: "wc:westeros", x: 1767, y: 93, z: 18137, time: 1696965111334L, xRot: 11.399962f, yRot: -240.98497f }
"barrowtest": { dim: "wc:playground", x: 880, y: 21, z: -985, time: 1696965111334L, xRot: 9.080897f, yRot: -150.9874f }
"shepherd": { dim: "wc:westeros", x: -8855, y: 72, z: 4917, time: 1696965111334L, xRot: -9.000205f, yRot: 260.2509f }
"hornhillv7": { dim: "wc:westeros", x: -3559, y: 153, z: 19970, time: 1696965111334L, xRot: 89.4f, yRot: 180.909f }
"horpeh1": { dim: "wc:westeros", x: 4686, y: 50, z: 19936, time: 1696965111334L, xRot: 1.6500365f, yRot: 60.843754f }
"claypool": { dim: "wc:westeros", x: -834, y: 55, z: 6639, time: 1696965111334L, xRot: -9.193199f, yRot: 139.94122f }
"seaworth": { dim: "wc:westeros", x: 7133, y: 35, z: 18543, time: 1696965111335L, xRot: -13.500009f, yRot: -273.62714f }
"queenscrown": { dim: "wc:westeros", x: 2489, y: 35, z: -15157, time: 1696965111335L, xRot: -5.850011f, yRot: 270.87006f }
"middleburytavern": { dim: "wc:westeros", x: 1148, y: 47, z: 17007, time: 1696965111335L, xRot: -4.627445f, yRot: 359.51938f }
"harridanhill": { dim: "wc:westeros", x: -6170, y: 129, z: 5633, time: 1696965111335L, xRot: -11.100123f, yRot: -208.81079f }
"test": { dim: "wc:playground", x: 49, y: 21, z: 105, time: 1696965111335L, xRot: 2.9999795f, yRot: 183.00291f }
"Rollingfordhamlet": { dim: "wc:westeros", x: 1556, y: 55, z: 12152, time: 1696965111335L, xRot: 36.910065f, yRot: -91.78296f }
"ashfordhunt1": { dim: "wc:westeros", x: -342, y: 44, z: 18053, time: 1696965111335L, xRot: 6.750082f, yRot: -216.54959f }
"chhamlet1": { dim: "wc:westeros", x: -8446, y: 55, z: 15623, time: 1696965111335L, xRot: 37.79993f, yRot: -182.06845f }
"statues": { dim: "wc:playground", x: -954, y: 21, z: 1156, time: 1696965111336L, xRot: 29.400028f, yRot: -339.24146f }
"wwhf4": { dim: "wc:westeros", x: 637, y: 63, z: 10150, time: 1696965111336L, xRot: 29.551247f, yRot: -0.49246216f }
"ottercreek": { dim: "wc:westeros", x: 2594, y: 34, z: -7432, time: 1696965111336L, xRot: -15.600085f, yRot: -243.05402f }
"lannisportdocks": { dim: "wc:westeros", x: -7703, y: 36, z: 12224, time: 1696965111336L, xRot: -7.350034f, yRot: -151.72997f }
"forestmill": { dim: "wc:westeros", x: -7948, y: 56, z: -4305, time: 1696965111336L, xRot: 24.749989f, yRot: -108.52497f }
"intro": { dim: "wc:playground", x: 1362, y: 24, z: -221, time: 1696965111336L, xRot: 15.299841f, yRot: 180.52739f }
"gvhf1": { dim: "wc:westeros", x: 883, y: 44, z: 16308, time: 1696965111336L, xRot: 20.678478f, yRot: -209.9174f }
"streamside": { dim: "wc:westeros", x: -6050, y: 36, z: -3537, time: 1696965111336L, xRot: -7.3504615f, yRot: 210.97673f }
"whamlet1": { dim: "wc:westeros", x: -4203, y: 41, z: -3059, time: 1696965111337L, xRot: 14.550014f, yRot: 180.74985f }
"HayfordFarm1": { dim: "wc:westeros", x: 2162, y: 54, z: 12060, time: 1696965111337L, xRot: 10.500007f, yRot: 267.5338f }
"redkeep": { dim: "wc:westeros", x: 3261, y: 119, z: 13279, time: 1696965111337L, xRot: -30.89999f, yRot: -47.990295f }
"cariboucrossing": { dim: "wc:westeros", x: 3916, y: 39, z: -5626, time: 1696965111337L, xRot: 9.599951f, yRot: -35.39708f }
"csbrew": { dim: "wc:westeros", x: -740, y: 55, z: 18875, time: 1696965111337L, xRot: 2.8500125f, yRot: 319.16696f }
"csham2": { dim: "wc:westeros", x: -1373, y: 55, z: 19323, time: 1696965111337L, xRot: 25.349968f, yRot: 0.29551893f }
"sfhamlet8": { dim: "wc:westeros", x: -5038, y: 52, z: 24079, time: 1696965111337L, xRot: 22.349972f, yRot: -209.87543f }
"sludgypond": { dim: "wc:westeros", x: 2132, y: 46, z: 8224, time: 1696965111337L, xRot: -6.299898f, yRot: 304.94885f }
"vale": { dim: "wc:westeros", x: 3867, y: 165, z: 6145, time: 1696965111338L, xRot: -11.700045f, yRot: -88.65836f }
"rockcircle": { dim: "wc:westeros", x: 7370, y: 71, z: 16078, time: 1696965111338L, xRot: 4.1997604f, yRot: -110.8526f }
"portglen": { dim: "wc:westeros", x: 5862, y: 35, z: 2064, time: 1696965111338L, xRot: -12.44949f, yRot: -180.15137f }
"klwindmill2": { dim: "wc:westeros", x: 2488, y: 60, z: 12099, time: 1696965111338L, xRot: 19.650015f, yRot: 215.3706f }
"fwcamp1": { dim: "wc:westeros", x: 5484, y: 90, z: 16530, time: 1696965111338L, xRot: 8.099951f, yRot: 94.62049f }
"cassel": { dim: "wc:westeros", x: -1197, y: 82, z: -8456, time: 1696965111338L, xRot: -17.999998f, yRot: 6.1334248f }
"morestatues": { dim: "wc:playground", x: -677, y: 21, z: -1167, time: 1696965111338L, xRot: 28.350029f, yRot: 289.4917f }
"skagos": { dim: "wc:westeros", x: 9651, y: 62, z: -14946, time: 1696965111338L, xRot: 16.799995f, yRot: -234.46417f }
"wfsheepfarm1": { dim: "wc:westeros", x: -1043, y: 90, z: -8692, time: 1696965111339L, xRot: 51.89994f, yRot: 57.42398f }
"bearisland": { dim: "wc:westeros", x: -4464, y: 46, z: -13461, time: 1696965111339L, xRot: -6.299962f, yRot: 269.52393f }
"parchments": { dim: "wc:westeros", x: 8260, y: 36, z: 15581, time: 1696965111339L, xRot: -1.7999936f, yRot: -43.737762f }
"ullc1": { dim: "wc:westeros", x: -6348, y: 66, z: 22128, time: 1696965111339L, xRot: 27.45f, yRot: -178.62006f }
"poole": { dim: "wc:westeros", x: -1207, y: 86, z: -8482, time: 1696965111349L, xRot: -1.6500113f, yRot: -179.8664f }
"pyke": { dim: "wc:westeros", x: -7511, y: 108, z: 6578, time: 1696965111350L, xRot: -13.500011f, yRot: 12.449568f }
"nsmarcher1": { dim: "wc:westeros", x: -912, y: 152, z: 20496, time: 1696965111350L, xRot: 23.100195f, yRot: -155.23106f }
"amberlyhf2": { dim: "wc:westeros", x: 7382, y: 55, z: 18310, time: 1696965111351L, xRot: -7.8000207f, yRot: 46.029713f }
"runestoneholdfast3": { dim: "wc:westeros", x: 7398, y: 89, z: 6433, time: 1696965111351L, xRot: 23.399979f, yRot: -147.46158f }
"wolfsden": { dim: "wc:westeros", x: 2013, y: 53, z: -2677, time: 1696965111351L, xRot: -15.600004f, yRot: 112.938965f }
"twoharbors": { dim: "wc:westeros", x: -7659, y: 83, z: 24658, time: 1696965111352L, xRot: 25.50014f, yRot: -349.85654f }
"mooreton": { dim: "wc:westeros", x: 9088, y: 37, z: 3939, time: 1696965111352L, xRot: -7.119281f, yRot: -92.38997f }
"bitterbirch": { dim: "wc:westeros", x: 4823, y: 37, z: -5267, time: 1696965111352L, xRot: 17.699978f, yRot: 163.95093f }
"ockley": { dim: "wc:westeros", x: -4106, y: 50, z: 16390, time: 1696965111352L, xRot: 5.5500107f, yRot: 281.76248f }
"theravishment": { dim: "wc:westeros", x: -49, y: 46, z: 6954, time: 1696965111352L, xRot: 7.2750597f, yRot: -45.494286f }
"ahholdfast1": { dim: "wc:westeros", x: -1751, y: 52, z: 9892, time: 1696965111352L, xRot: -12.599922f, yRot: -1.7434692f }
"grindcornmill": { dim: "wc:westeros", x: -1527, y: 35, z: 6962, time: 1696965111352L, xRot: -15.269901f, yRot: -72.85664f }
"herston": { dim: "wc:westeros", x: 5919, y: 45, z: 20293, time: 1696965111352L, xRot: 4.94449f, yRot: -140.42268f }
"goodbrook": { dim: "wc:westeros", x: -840, y: 51, z: 8696, time: 1696965111353L, xRot: -20.68544f, yRot: -198.1015f }
"hthistory": { dim: "wc:playground", x: 1373, y: 20, z: 1153, time: 1696965111353L, xRot: 90f, yRot: 149.3032f }
"gshamlet1": { dim: "wc:westeros", x: 9124, y: 58, z: 20020, time: 1696965111353L, xRot: 23.549994f, yRot: -153.25214f }
"littledosk": { dim: "wc:westeros", x: -8047, y: 41, z: 16335, time: 1696965111353L, xRot: -8.401836f, yRot: -232.69923f }
"oldmill": { dim: "wc:westeros", x: -5529, y: 45, z: -4358, time: 1696965111353L, xRot: 0.6000259f, yRot: -313.25958f }
"hardhomenew": { dim: "wc:westeros", x: 5710, y: 67, z: -18921, time: 1696965111353L, xRot: 23.400019f, yRot: -235.68315f }
"cmham5": { dim: "wc:westeros", x: -6785, y: 44, z: 15592, time: 1696965111353L, xRot: 5.6999855f, yRot: -162.85478f }
"whitetree": { dim: "wc:westeros", x: 2754, y: 139, z: -16586, time: 1696965111354L, xRot: 26.999989f, yRot: -142.51492f }
"fruits": { dim: "wc:playground", x: -550, y: 20, z: -1030, time: 1696965111354L, xRot: 28.50001f, yRot: 103.94173f }
"MajorTom12466": { dim: "wc:playground", x: -98, y: 21, z: 1069, time: 1696965111354L, xRot: 3.7500405f, yRot: -46.916138f }
"bridges": { dim: "wc:westeros", x: 313, y: 40, z: 16246, time: 1696965111354L, xRot: 5.850005f, yRot: 180.75372f }
"lionwood": { dim: "wc:westeros", x: -5410, y: 56, z: 14864, time: 1696965111354L, xRot: 9.450185f, yRot: -239.7063f }
"wildlifeguide": { dim: "wc:playground", x: -748, y: 21, z: 1059, time: 1696965111354L, xRot: 10.650051f, yRot: 89.14552f }
"kthamlet1": { dim: "wc:westeros", x: 8273, y: 55, z: 19417, time: 1696965111354L, xRot: 37.650005f, yRot: 185.53613f }
"fishpond": { dim: "wc:westeros", x: -5495, y: 61, z: -7938, time: 1696965111355L, xRot: -0.8998751f, yRot: -126.11896f }
"swannsroost": { dim: "wc:westeros", x: 3525, y: 107, z: 19424, time: 1696965111355L, xRot: -29.250036f, yRot: -9.964784f }
"BlackhavenHf": { dim: "wc:westeros", x: 2551, y: 53, z: 19903, time: 1696965111355L, xRot: -5.849943f, yRot: -133.64995f }
"eaglethicket": { dim: "wc:westeros", x: -2697, y: 51, z: 4000, time: 1696965111355L, xRot: 2.4013953f, yRot: 84.512375f }
"coldmoat": { dim: "wc:westeros", x: -7206, y: 44, z: 16062, time: 1696965111355L, xRot: 14.84984f, yRot: 110.312355f }
"docks": { dim: "wc:westeros", x: 2588, y: 84, z: 13576, time: 1696965111355L, xRot: 1.8000436f, yRot: 179.60938f }
"treetest": { dim: "wc:playground", x: 347, y: 141, z: -327, time: 1696965111356L, xRot: -0.60000175f, yRot: -178.73553f }
"rlbridge3": { dim: "wc:westeros", x: 2308, y: 43, z: 11459, time: 1696965111366L, xRot: 5.312235f, yRot: 87.48439f }
"Wydmanquarry": { dim: "wc:westeros", x: 8299, y: 63, z: 1318, time: 1696965111367L, xRot: 42.179367f, yRot: -352.60547f }
"klmanse1": { dim: "wc:westeros", x: 1993, y: 39, z: 12627, time: 1696965111367L, xRot: 0.600027f, yRot: -269.28204f }
"innofthekneelingman": { dim: "wc:westeros", x: -622, y: 37, z: 7156, time: 1696965111368L, xRot: -6.2999167f, yRot: -188.56345f }
"skycell": { dim: "wc:westeros", x: 3879, y: 159, z: 6167, time: 1696965111368L, xRot: 6.5999794f, yRot: 87.90325f }
"klmanse4": { dim: "wc:westeros", x: 3440, y: 49, z: 12440, time: 1696965111368L, xRot: -4.7999964f, yRot: 178.25398f }
"weaver": { dim: "wc:westeros", x: -6629, y: 36, z: 5723, time: 1696965111368L, xRot: -5.685259f, yRot: -88.164406f }
"thetowerofjoy": { dim: "wc:westeros", x: -1486, y: 167, z: 21178, time: 1696965111368L, xRot: -0.9109614f, yRot: -228.20535f }
"seagard": { dim: "wc:westeros", x: -2235, y: 44, z: 4397, time: 1696965111369L, xRot: -7.200231f, yRot: -288.30115f }
"lewes": { dim: "wc:westeros", x: -2554, y: 64, z: 15973, time: 1696965111369L, xRot: 0.7499897f, yRot: -174.15019f }
"thatchell": { dim: "wc:westeros", x: -1044, y: 74, z: 16629, time: 1696965111369L, xRot: 3.5163224f, yRot: -269.7062f }
"Chyttering": { dim: "wc:westeros", x: 7129, y: 78, z: 13419, time: 1696965111369L, xRot: -10.885369f, yRot: 86.53248f }
"oaquarry": { dim: "wc:westeros", x: 6918, y: 66, z: 3543, time: 1696965111369L, xRot: 32.363537f, yRot: -171.52516f }
"dwmcamp1": { dim: "wc:westeros", x: -1926, y: 57, z: -8509, time: 1696965111369L, xRot: 12.749987f, yRot: -190.20612f }
"croftersvillage": { dim: "wc:westeros", x: -2774, y: 42, z: -8535, time: 1696965111369L, xRot: 9.749968f, yRot: 2.9944246f }
"goldlake": { dim: "wc:westeros", x: -4643, y: 81, z: 10309, time: 1696965111369L, xRot: 0.8996167f, yRot: -44.991417f }
"bushyfarm": { dim: "wc:westeros", x: -958, y: 47, z: 13667, time: 1696965111369L, xRot: -19.799957f, yRot: -95.89018f }
"shatterstone": { dim: "wc:westeros", x: -8440, y: 77, z: 5267, time: 1696965111370L, xRot: 3.7507322f, yRot: 2.1042564f }
"klbrick3": { dim: "wc:westeros", x: 3878, y: 45, z: 12855, time: 1696965111370L, xRot: 8.699957f, yRot: -179.28223f }
"inchf2": { dim: "wc:westeros", x: -568, y: 42, z: 14249, time: 1696965111370L, xRot: 10.350171f, yRot: -215.23268f }
"hwhamlet1": { dim: "wc:westeros", x: 3960, y: 58, z: -7318, time: 1696965111370L, xRot: 3.4500544f, yRot: 325.05096f }
"sudental": { dim: "wc:westeros", x: 7956, y: 56, z: 3629, time: 1696965111370L, xRot: 15.59998f, yRot: 4.6483207f }
"bbdocks": { dim: "wc:westeros", x: -1348, y: 36, z: 15868, time: 1696965111370L, xRot: -1.6500034f, yRot: -136.38766f }
"Wolfsmire": { dim: "wc:westeros", x: -6382, y: 45, z: -9939, time: 1696965111370L, xRot: -0.5992122f, yRot: -264.02682f }
"burnedmen": { dim: "wc:westeros", x: 3593, y: 100, z: 6194, time: 1696965111370L, xRot: 16.349976f, yRot: -88.04688f }
"harrenhaljump": { dim: "wc:westeros", x: 1901, y: 47, z: 9219, time: 1696965111371L, xRot: 5.759484f, yRot: 267.32455f }
"sfholdfast": { dim: "wc:westeros", x: -5805, y: 45, z: 24535, time: 1696965111371L, xRot: -13.350037f, yRot: -112.52469f }
"styleguide": { dim: "wc:playground", x: -969, y: 20, z: 906, time: 1696965111371L, xRot: 0.30070135f, yRot: 0.49575806f }
"morton": { dim: "wc:westeros", x: -7220, y: 71, z: 16668, time: 1696965111371L, xRot: 1.0500171f, yRot: -359.21896f }
"hornhillv4": { dim: "wc:westeros", x: -4310, y: 109, z: 19402, time: 1696965111371L, xRot: 33.14998f, yRot: 147.75653f }
"RamshackleStiltHouse": { dim: "wc:westeros", x: 1459, y: 37, z: 10749, time: 1696965111371L, xRot: 39.60001f, yRot: 103.17569f }
"bole": { dim: "wc:westeros", x: -3670, y: 44, z: -10063, time: 1696965111371L, xRot: 3.449992f, yRot: -302.8463f }
"kilmerton": { dim: "wc:westeros", x: -1638, y: 87, z: 17289, time: 1696965111371L, xRot: 15.000062f, yRot: -205.2563f }
"hwbanditcamp": { dim: "wc:westeros", x: 3199, y: 50, z: -7752, time: 1696965111371L, xRot: -5.099999f, yRot: -149.41414f }
"spawn": { dim: "wc:playground", x: -31, y: 145, z: -36, time: 1696965111372L, xRot: 1.8000216f, yRot: 0.753248f }
"mernswood": { dim: "wc:westeros", x: -2042, y: 44, z: 16205, time: 1696965111372L, xRot: -13.010773f, yRot: -259.53476f }
"hwhf1": { dim: "wc:westeros", x: -8112, y: 46, z: 19515, time: 1696965111372L, xRot: -3.5912857f, yRot: 13.577014f }
"kingswoodbridge": { dim: "wc:westeros", x: 5665, y: 39, z: 14864, time: 1696965111372L, xRot: 5.978239f, yRot: 130.14363f }
"terrickh1": { dim: "wc:westeros", x: 713, y: 43, z: 6586, time: 1696965111372L, xRot: 6.450246f, yRot: 335.94824f }
"baelorsstorage": { dim: "wc:westeros", x: 2562, y: 24, z: 13253, time: 1696965111372L, xRot: -3.449955f, yRot: 91.0957f }
"ShaesManse": { dim: "wc:westeros", x: 3371, y: 46, z: 12895, time: 1696965111383L, xRot: -5.4000144f, yRot: 25.400932f }
"newkeepvineyard": { dim: "wc:westeros", x: 2273, y: 49, z: 1347, time: 1696965111383L, xRot: 17.249756f, yRot: -3.1467273f }
"regionguide": { dim: "wc:playground", x: -969, y: 20, z: 906, time: 1696965111384L, xRot: 0.30070135f, yRot: 0.49575806f }
"foote": { dim: "wc:westeros", x: -4859, y: 83, z: 8192, time: 1696965111384L, xRot: 4.556278705596924f, yRot: -56.42570877075195f }
"copperspawn": { dim: "wc:playground", x: -708, y: 33, z: -914, time: 1696965111384L, xRot: 2.099979f, yRot: 271.64774f }
"kingslanding": { dim: "wc:westeros", x: 2350, y: 44, z: 12692, time: 1696965111384L, xRot: -10.799998f, yRot: 304.8555f }
"sleet": { dim: "wc:westeros", x: 3718, y: 46, z: -14204, time: 1696965111385L, xRot: 8.099977f, yRot: -89.73255f }
"breakstonehamlet1": { dim: "wc:westeros", x: 3712, y: 38, z: 959, time: 1696965111385L, xRot: 14.399992f, yRot: -301.04987f }
"bloodygate": { dim: "wc:westeros", x: 2569, y: 156, z: 6824, time: 1696965111385L, xRot: -16.055677f, yRot: -100.63933f }
"moorecabin3": { dim: "wc:westeros", x: 9393, y: 45, z: 3601, time: 1696965111385L, xRot: -23.249928f, yRot: -224.95673f }
"braavoscontest": { dim: "wc:playground", x: -1139, y: 20, z: 259, time: 1696965111385L, xRot: -14.7003565f, yRot: 90.461426f }
"dwmhunting1": { dim: "wc:westeros", x: -3275, y: 45, z: -10703, time: 1696965111385L, xRot: 10.200001f, yRot: 174.1538f }
"horpei2": { dim: "wc:westeros", x: 4442, y: 35, z: 20524, time: 1696965111385L, xRot: 30.290266f, yRot: 271.643f }
"HuntHoldFast": { dim: "wc:westeros", x: -5658, y: 120, z: 21012, time: 1696965111386L, xRot: 15.299438f, yRot: -298.3967f }
"mosshamlet2": { dim: "wc:westeros", x: 1417, y: 45, z: -4388, time: 1696965111386L, xRot: -16.200048f, yRot: -90.27918f }
"FBtunnels": { dim: "wc:westeros", x: 3072, y: 40, z: 12928, time: 1696965111386L, xRot: 7.0619764f, yRot: -179.52756f }
"gvhaml1": { dim: "wc:westeros", x: 1388, y: 77, z: 15823, time: 1696965111386L, xRot: 22.088352f, yRot: -42.135376f }
"summercontest": { dim: "wc:playground", x: -1690, y: 20, z: -164, time: 1696965111386L, xRot: -13.944114f, yRot: 91.37952f }
"bellyofthewhale": { dim: "wc:westeros", x: 3102, y: 53, z: -201, time: 1696965111386L, xRot: 12.149973f, yRot: 222.83875f }
"dgh1": { dim: "wc:westeros", x: 7226, y: 73, z: 339, time: 1696965111386L, xRot: 9.9000025f, yRot: -353.04947f }
"whitewillow": { dim: "wc:westeros", x: 363, y: 53, z: 10026, time: 1696965111386L, xRot: -15.300002f, yRot: -26.874634f }
"gulltower": { dim: "wc:westeros", x: 10240, y: 59, z: 5269, time: 1696965111387L, xRot: -29.176422f, yRot: 31.577698f }
"thepit": { dim: "wc:westeros", x: 1427, y: 81, z: 24071, time: 1696965111387L, xRot: 42.89996f, yRot: 101.81061f }
"ninestars": { dim: "wc:westeros", x: 2322, y: 124, z: 3162, time: 1696965111387L, xRot: 1.6499943f, yRot: -50.494507f }
"donnigerv2": { dim: "wc:westeros", x: 6303, y: 74, z: 1088, time: 1696965111387L, xRot: 0.29997024f, yRot: -271.47812f }
"wintertown": { dim: "wc:westeros", x: -1136, y: 90, z: -8234, time: 1696965111387L, xRot: -11.700026f, yRot: -180.0119f }
"wfcrofters1": { dim: "wc:westeros", x: -1600, y: 69, z: -8062, time: 1696965111387L, xRot: 54.899994f, yRot: -294.82004f }
"rlhamlet3": { dim: "wc:westeros", x: -5034, y: 42, z: 15703, time: 1696965111387L, xRot: 38.550034f, yRot: -92.651184f }
"netley": { dim: "wc:westeros", x: -7013, y: 78, z: 4719, time: 1696965111388L, xRot: -3.0175571f, yRot: 180.43613f }
"dondarrioncadet": { dim: "wc:westeros", x: 3298, y: 51, z: 19986, time: 1696965111388L, xRot: -10.349839f, yRot: -175.20078f }
"wfwatchtower1": { dim: "wc:westeros", x: -954, y: 70, z: -8093, time: 1696965111388L, xRot: 15.599957f, yRot: -54.32604f }
"whstreet": { dim: "wc:playground", x: 1671, y: 20, z: 232, time: 1696965111388L, xRot: -0.2998078f, yRot: -269.58557f }
"lorddamascus": { dim: "wc:playground", x: 114, y: 21, z: 1066, time: 1696965111388L, xRot: 17.399899f, yRot: -47.086025f }
"dfruin1": { dim: "wc:westeros", x: 5509, y: 65, z: -9015, time: 1696965111388L, xRot: 22.6501f, yRot: -76.350876f }
"ltorchards": { dim: "wc:westeros", x: -1069, y: 47, z: 16395, time: 1696965111388L, xRot: 7.0699954f, yRot: -263.95685f }
"broadarch": { dim: "wc:westeros", x: 5130, y: 88, z: 19503, time: 1696965111388L, xRot: -4.349126f, yRot: -243.20703f }
"tentowers": { dim: "wc:westeros", x: -5636, y: 37, z: 5104, time: 1696965111389L, xRot: 6.150013f, yRot: 71.436f }
"dfcrossing": { dim: "wc:westeros", x: 5946, y: 34, z: -8779, time: 1696965111389L, xRot: 19.950205f, yRot: 61.651123f }
"WildlingFord": { dim: "wc:westeros", x: -1123, y: 35, z: -7819, time: 1696965111389L, xRot: 9.899983f, yRot: -240.67035f }
"rosehedge": { dim: "wc:westeros", x: 5231, y: 73, z: 19397, time: 1696965111389L, xRot: -0.14825895f, yRot: -28.664795f }
"rainwoodtest": { dim: "wc:playground", x: -1901, y: 87, z: 1623, time: 1696965111389L, xRot: 28.34998f, yRot: -3.553894f }
"blindtower": { dim: "wc:westeros", x: -8079, y: 74, z: 1402, time: 1696965111400L, xRot: -2.3999698f, yRot: 306.14368f }
"lghf2": { dim: "wc:westeros", x: -833, y: 105, z: 19333, time: 1696965111400L, xRot: 38.10008f, yRot: 230.099f }
"ashfordhf1": { dim: "wc:westeros", x: -1155, y: 50, z: 17924, time: 1696965111400L, xRot: -0.59999245f, yRot: -161.64886f }
"paletree": { dim: "wc:westeros", x: -7562, y: 78, z: 14003, time: 1696965111400L, xRot: -10.200071f, yRot: 0.15722673f }
"coldmoatcastle": { dim: "wc:westeros", x: -7221, y: 45, z: 15962, time: 1696965111400L, xRot: 3.4499674f, yRot: 89.89612f }
"ryswell": { dim: "wc:westeros", x: -6153, y: 54, z: -3756, time: 1696965111401L, xRot: -5.821338f, yRot: 181.63097f }
"brightwater": { dim: "wc:westeros", x: -7261, y: 78, z: 20094, time: 1696965111401L, xRot: -30.365772f, yRot: 2.998554f }
"tannertest": { dim: "wc:playground", x: -802, y: 20, z: 1116, time: 1696965111401L, xRot: 21.600004f, yRot: -177.55463f }
"highhermh4": { dim: "wc:westeros", x: -3533, y: 62, z: 23074, time: 1696965111401L, xRot: 8.946029f, yRot: -137.54854f }
"hhhamlet2": { dim: "wc:westeros", x: 4350, y: 37, z: 3895, time: 1696965111401L, xRot: -8.460535f, yRot: -7.248871f }
"ironthrone": { dim: "wc:westeros", x: 3390, y: 132, z: 13293, time: 1696965111401L, xRot: 0.6000107f, yRot: -0.14050293f }
"phhamlet4": { dim: "wc:westeros", x: -6400, y: 81, z: 23613, time: 1696965111401L, xRot: -17.097061f, yRot: 176.72856f }
"redbog": { dim: "wc:westeros", x: -1871, y: 37, z: 4892, time: 1696965111401L, xRot: -4.349839f, yRot: -293.0396f }
"blackmont1": { dim: "wc:westeros", x: -3468, y: 120, z: 22003, time: 1696965111402L, xRot: 32.84946f, yRot: 162.27354f }
"inchsept": { dim: "wc:westeros", x: -842, y: 37, z: 14915, time: 1696965111402L, xRot: 21.899961f, yRot: 273.17636f }
"sghamlet3": { dim: "wc:westeros", x: -4339, y: 105, z: 4572, time: 1696965111402L, xRot: 6.8999805f, yRot: -359.12137f }
"algood": { dim: "wc:westeros", x: -6998, y: 69, z: 13891, time: 1696965111402L, xRot: 14.696520805358887f, yRot: -83.39285278320312f }
"forests": { dim: "wc:playground", x: -1493, y: 21, z: 959, time: 1696965111402L, xRot: -14.100046f, yRot: -209.49011f }
"snakewooddocks": { dim: "wc:westeros", x: 6887, y: 36, z: 2140, time: 1696965111402L, xRot: 2.8508763f, yRot: 151.03232f }
"overmoor": { dim: "wc:westeros", x: 5774, y: 44, z: -6487, time: 1696965111402L, xRot: -1.800013f, yRot: -78.27106f }
"raventreehall": { dim: "wc:westeros", x: -1828, y: 57, z: 6389, time: 1696965111402L, xRot: -31.269463f, yRot: 181.14662f }
"twoelkhold": { dim: "wc:westeros", x: 3225, y: 44, z: -13951, time: 1696965111403L, xRot: -14.100163f, yRot: -251.12622f }
"lambswold": { dim: "wc:westeros", x: -998, y: 38, z: 7314, time: 1696965111403L, xRot: -9.000042f, yRot: 148.97525f }
"willowwood": { dim: "wc:westeros", x: 864, y: 40, z: 10374, time: 1696965111403L, xRot: 0.023308998f, yRot: 225.4567f }
"arena2": { dim: "wc:playground", x: -899, y: 23, z: 497, time: 1696965111403L, xRot: -8.550036f, yRot: -321.05112f }
"blindlordstower": { dim: "wc:westeros", x: -8079, y: 74, z: 1403, time: 1696965111403L, xRot: -2.3999698f, yRot: 306.14368f }
"cnhamlet3": { dim: "wc:westeros", x: 56, y: 72, z: -14862, time: 1696965111404L, xRot: 57.599995f, yRot: -324.78296f }
"MancePlan": { dim: "wc:playground", x: 1219, y: 27, z: -523, time: 1696965111404L, xRot: 39.899998f, yRot: -186.65479f }
"stokeworth": { dim: "wc:westeros", x: 4445, y: 44, z: 11697, time: 1696965111404L, xRot: -11.999971f, yRot: -101.727325f }
"greyshield": { dim: "wc:westeros", x: -9786, y: 108, z: 17640, time: 1696965111404L, xRot: -1.6499983f, yRot: -91.09064f }
"gvhf3": { dim: "wc:westeros", x: 1991, y: 80, z: 16051, time: 1696965111404L, xRot: 90f, yRot: -181.19026f }
"pawsey": { dim: "wc:westeros", x: -1230, y: 42, z: 14953, time: 1696965111404L, xRot: 9.777068f, yRot: 243.86638f }
"cedfarm": { dim: "wc:westeros", x: 792, y: 48, z: 17740, time: 1696965111404L, xRot: 24.011568f, yRot: 256.80203f }
"bramleycourt": { dim: "wc:westeros", x: -1891, y: 38, z: 17434, time: 1696965111405L, xRot: -19.650623f, yRot: -269.22238f }
"greygallows": { dim: "wc:westeros", x: 11149, y: 37, z: 22627, time: 1696965111405L, xRot: -2.700049877166748f, yRot: 133.87884521484375f }
"rhhf4": { dim: "wc:westeros", x: 9203, y: 58, z: 18259, time: 1696965111405L, xRot: 4.337695f, yRot: -272.017f }
"fthf1": { dim: "wc:westeros", x: 3583, y: 59, z: 15887, time: 1696965111405L, xRot: 13.8000145f, yRot: -155.2775f }
"mudgate": { dim: "wc:westeros", x: 2831, y: 42, z: 13428, time: 1696965111405L, xRot: 1.5000949f, yRot: -179.93958f }
"hornhilltown1": { dim: "wc:westeros", x: -3954, y: 115, z: 19965, time: 1696965111405L, xRot: 52.04997f, yRot: -175.34114f }
"Hayford": { dim: "wc:westeros", x: 1991, y: 46, z: 12367, time: 1696965111405L, xRot: -21.149984f, yRot: -104.92169f }
"sfhamlet9": { dim: "wc:westeros", x: -5345, y: 41, z: 24431, time: 1696965111405L, xRot: -4.650007f, yRot: -102.47525f }
"pavillion": { dim: "wc:westeros", x: 191, y: 42, z: 12761, time: 1696965111406L, xRot: -5.3999844f, yRot: -243.74171f }
"Westfield": { dim: "wc:westeros", x: -6261, y: 50, z: 14930, time: 1696965111406L, xRot: 3.4983525f, yRot: -168.11285f }
"gvvine1": { dim: "wc:westeros", x: 1208, y: 78, z: 15772, time: 1696965111416L, xRot: 14.264873f, yRot: -175.9878f }
"fieldstone": { dim: "wc:westeros", x: 1867, y: 42, z: 8070, time: 1696965111417L, xRot: -0.89986676f, yRot: 183.29779f }
"stonyfort": { dim: "wc:westeros", x: -8539, y: 51, z: -7736, time: 1696965111417L, xRot: -5.250024f, yRot: -272.8526f }
"rhhamlet2": { dim: "wc:westeros", x: 9024, y: 44, z: 19116, time: 1696965111417L, xRot: 8.029973f, yRot: 263.11688f }
"steepstream": { dim: "wc:westeros", x: 1296, y: 49, z: 5974, time: 1696965111418L, xRot: 0.2999869f, yRot: -21.94983f }
"lpsouthgate": { dim: "wc:westeros", x: -7598, y: 43, z: 12325, time: 1696965111418L, xRot: -1.2772812f, yRot: -180.57045f }
"towerglimmering": { dim: "wc:westeros", x: -6433, y: 46, z: 5324, time: 1696965111418L, xRot: -0.4549775f, yRot: -166.88882f }
"sandstonetown": { dim: "wc:westeros", x: -2217, y: 61, z: 24629, time: 1696965111418L, xRot: -1.5000615f, yRot: -315.63184f }
"parchmentsh1": { dim: "wc:westeros", x: 8461, y: 36, z: 15036, time: 1696965111418L, xRot: 4.0499344f, yRot: 295.98547f }
"hornwoodtower": { dim: "wc:westeros", x: 3884, y: 35, z: -6525, time: 1696965111418L, xRot: -20.249966f, yRot: 286.4942f }
"khhamlet9": { dim: "wc:westeros", x: 5841, y: 79, z: -9853, time: 1696965111418L, xRot: 15.750089f, yRot: 98.390434f }
"Wydman": { dim: "wc:westeros", x: 7938, y: 94, z: 1665, time: 1696965111419L, xRot: 27.654705f, yRot: -121.15857f }
"rhhf2": { dim: "wc:westeros", x: 9110, y: 58, z: 19100, time: 1696965111419L, xRot: -16.72002f, yRot: 354.4668f }
"breakstonequarry3": { dim: "wc:westeros", x: 5422, y: 84, z: 838, time: 1696965111419L, xRot: 5.1000104f, yRot: -14.550079f }
"kthamlet4": { dim: "wc:westeros", x: 7912, y: 55, z: 19614, time: 1696965111419L, xRot: 3.7499948f, yRot: -163.66435f }
"merrydowndell": { dim: "wc:westeros", x: -283, y: 42, z: 8356, time: 1696965111420L, xRot: -9.749138f, yRot: 193.4645f }
"faq": { dim: "wc:playground", x: -29, y: 148, z: -47, time: 1696965111420L, xRot: -0.7499728f, yRot: -176.39667f }
"torentinetest": { dim: "wc:playground", x: -1886, y: 78, z: 823, time: 1696965111420L, xRot: 12.599994f, yRot: -2.0185282f }
"hornhillmanor": { dim: "wc:westeros", x: -4036, y: 142, z: 19224, time: 1696965111420L, xRot: 45.59995f, yRot: 237.00687f }
"ironoakshamlet2": { dim: "wc:westeros", x: 5460, y: 35, z: 4989, time: 1696965111420L, xRot: -3.000016f, yRot: -37.356567f }
"tbhamlet2": { dim: "wc:westeros", x: -5499, y: 37, z: 14302, time: 1696965111420L, xRot: 5.550016f, yRot: -122.22186f }
"crossbowridge": { dim: "wc:westeros", x: -1633, y: 38, z: 6860, time: 1696965111420L, xRot: -22.350067f, yRot: -113.29956f }
"peat2": { dim: "wc:westeros", x: -864, y: 63, z: -8041, time: 1696965111420L, xRot: 46.650135f, yRot: -154.08081f }
"pinefield": { dim: "wc:westeros", x: 5055, y: 52, z: -6603, time: 1696965111420L, xRot: -4.200002f, yRot: -196.6559f }
"downdelving": { dim: "wc:westeros", x: -9283, y: 35, z: 5077, time: 1696965111421L, xRot: -3f, yRot: 305.25427f }
"reddinghamlet1": { dim: "wc:westeros", x: -3997, y: 51, z: 15713, time: 1696965111421L, xRot: 0.71386427f, yRot: 68.12891f }
"lambermoor": { dim: "wc:westeros", x: -7106, y: 47, z: 446, time: 1696965111421L, xRot: 4.8407035f, yRot: -13.092717f }
"hhf1": { dim: "wc:westeros", x: 6203, y: 70, z: 19874, time: 1696965111421L, xRot: 22.171291f, yRot: 270.6288f }
"saltpans": { dim: "wc:westeros", x: 3849, y: 43, z: 8341, time: 1696965111421L, xRot: -0.6975605f, yRot: 3.9447021f }
"blackbarhall": { dim: "wc:westeros", x: -9384, y: 43, z: 20295, time: 1696965111421L, xRot: 10.200002f, yRot: 86.80073f }
"swannpost": { dim: "wc:westeros", x: 4665, y: 101, z: 19254, time: 1696965111421L, xRot: -13.050152f, yRot: -114.06816f }
"rills": { dim: "wc:westeros", x: -6080, y: 44, z: -3695, time: 1696965111421L, xRot: -13.209924f, yRot: 163.6965f }
"wfquarry1": { dim: "wc:westeros", x: -1426, y: 95, z: -8344, time: 1696965111421L, xRot: 77.850006f, yRot: -222.3255f }
"lpeastgate": { dim: "wc:westeros", x: -6917, y: 46, z: 12108, time: 1696965111421L, xRot: 2.612312f, yRot: 89.78889f }
"snakewood": { dim: "wc:westeros", x: 6696, y: 85, z: 2013, time: 1696965111422L, xRot: -10.799135f, yRot: 200.98242f }
"mancescamp3": { dim: "wc:westeros", x: -1201, y: 68, z: -20334, time: 1696965111422L, xRot: 18.450005f, yRot: -59.133392f }
"terratest": { dim: "wc:playground", x: -1486, y: 20, z: 837, time: 1696965111422L, xRot: 2.4000049f, yRot: -15.85437f }
"greenmarket": { dim: "wc:westeros", x: -7575, y: 36, z: 20596, time: 1696965111422L, xRot: 6.7498817f, yRot: -109.76926f }
"ironoaks": { dim: "wc:westeros", x: 6295, y: 42, z: 5172, time: 1696965111422L, xRot: -11.400009f, yRot: 132.44084f }
"weirwoods": { dim: "wc:playground", x: 745, y: 39, z: -976, time: 1696965111422L, xRot: 10.218663f, yRot: -180.14264f }
"cnhf3": { dim: "wc:westeros", x: 5229, y: 93, z: 18519, time: 1696965111422L, xRot: 5.8399644f, yRot: -59.11311f }
"bitterbridge": { dim: "wc:westeros", x: -1042, y: 36, z: 15470, time: 1696965111422L, xRot: 0.1500086f, yRot: -90.79113f }
"dgsheepfarm1": { dim: "wc:westeros", x: 6939, y: 67, z: 647, time: 1696965111422L, xRot: 42.300022f, yRot: -357.71808f }
"chyport": { dim: "wc:westeros", x: 7025, y: 59, z: 13306, time: 1696965111422L, xRot: 17.89611f, yRot: 307.97778f }
"faircastle": { dim: "wc:westeros", x: -8071, y: 64, z: 10261, time: 1696965111422L, xRot: -18.45001f, yRot: 175.40363f }
"sghamlet1": { dim: "wc:westeros", x: -2724, y: 76, z: 4005, time: 1696965111433L, xRot: 28.800007f, yRot: -80.70004f }
"ivyhall": { dim: "wc:westeros", x: -4703, y: 37, z: 15209, time: 1696965111433L, xRot: -10.799949f, yRot: -87.41733f }
"coldwatervillage1": { dim: "wc:westeros", x: 6307, y: 55, z: 1745, time: 1696965111434L, xRot: 52.499954f, yRot: 175.60896f }
"jast": { dim: "wc:westeros", x: -5573, y: 49, z: 14937, time: 1696965111434L, xRot: -1.6487845f, yRot: 122.56113f }
"muddyhall": { dim: "wc:westeros", x: -382, y: 56, z: 6598, time: 1696965111434L, xRot: 18.298185f, yRot: 159.09628f }
"rlhamlet1": { dim: "wc:westeros", x: -5987, y: 44, z: 15543, time: 1696965111434L, xRot: 3.600084f, yRot: 178.5581f }
"roadmill": { dim: "wc:westeros", x: -7970, y: 41, z: -5053, time: 1696965111434L, xRot: -6.626905f, yRot: 38.541435f }
"harvesthall": { dim: "wc:westeros", x: 953, y: 133, z: 19205, time: 1696965111435L, xRot: -4.650022f, yRot: -190.34903f }
"highhermh1": { dim: "wc:westeros", x: -3966, y: 64, z: 23381, time: 1696965111435L, xRot: -17.700071f, yRot: 302.81735f }
"sglumberlogdumping": { dim: "wc:westeros", x: -3510, y: 50, z: 4499, time: 1696965111435L, xRot: 36.599846f, yRot: -346.98193f }
"rosewatchtower": { dim: "wc:westeros", x: -1785, y: 34, z: 7617, time: 1696965111435L, xRot: -24.599998f, yRot: 197.87383f }
"weedfield": { dim: "wc:westeros", x: -5159, y: 67, z: 10473, time: 1696965111435L, xRot: -3.5999815f, yRot: 19.810823f }
"flayersend": { dim: "wc:westeros", x: 5607, y: 45, z: -9782, time: 1696965111435L, xRot: -2.549996f, yRot: 144.36732f }
"klbrick1": { dim: "wc:westeros", x: 2078, y: 38, z: 13017, time: 1696965111435L, xRot: -18.599998f, yRot: -254.61757f }
"moorelumberjack1": { dim: "wc:westeros", x: 9021, y: 48, z: 3718, time: 1696965111436L, xRot: 3.2873733f, yRot: -222.00415f }
"khhf3": { dim: "wc:westeros", x: 7986, y: 55, z: -9987, time: 1696965111436L, xRot: 46.79981f, yRot: -93.15998f }
"trestletable": { dim: "wc:westeros", x: 3332, y: 137, z: 13440, time: 1696965111436L, xRot: 9.000005f, yRot: 63.60883f }
"ssfisherh5": { dim: "wc:westeros", x: -7295, y: 40, z: -6029, time: 1696965111436L, xRot: 16.499977f, yRot: -272.84802f }
"riverbend": { dim: "wc:westeros", x: 1330, y: 34, z: 7392, time: 1696965111436L, xRot: 0.9894879f, yRot: -254.20949f }
"dragonstone": { dim: "wc:westeros", x: 8444, y: 34, z: 10374, time: 1696965111437L, xRot: -23.550116f, yRot: 146.09631f }
"condonhf1": { dim: "wc:westeros", x: -132, y: 35, z: -6434, time: 1696965111437L, xRot: -12.000015f, yRot: -148.50293f }
"haystackhall1": { dim: "wc:westeros", x: 7909, y: 45, z: 15661, time: 1696965111437L, xRot: -3.899993f, yRot: 269.8799f }
"csham4": { dim: "wc:westeros", x: -1813, y: 41, z: 17963, time: 1696965111437L, xRot: 14.249919f, yRot: -179.41171f }
"khwt1": { dim: "wc:westeros", x: 6440, y: 46, z: -9059, time: 1696965111437L, xRot: 8.099991f, yRot: -18.308136f }
"wagstaff": { dim: "wc:westeros", x: 4611, y: 41, z: 18652, time: 1696965111437L, xRot: -36.299988f, yRot: -164.62782f }
"dfhunt2": { dim: "wc:westeros", x: 5138, y: 44, z: -9127, time: 1696965111437L, xRot: 1.0500231f, yRot: 148.79878f }
"hellholt1": { dim: "wc:westeros", x: -209, y: 90, z: 24878, time: 1696965111437L, xRot: 12.749614f, yRot: 74.22308f }
"flowerhillmill": { dim: "wc:westeros", x: -2785, y: 48, z: 16533, time: 1696965111438L, xRot: -12.0000515f, yRot: 109.499756f }
"phhamlet3": { dim: "wc:westeros", x: -7247, y: 79, z: 24071, time: 1696965111438L, xRot: -14.24705f, yRot: -34.47145f }
"mossybridge": { dim: "wc:westeros", x: -2202, y: 38, z: -8141, time: 1696965111438L, xRot: -13.499992f, yRot: -185.99297f }
"kl": { dim: "wc:westeros", x: 2350, y: 44, z: 12692, time: 1696965111438L, xRot: -10.799998f, yRot: 304.8555f }
"bushyhf2": { dim: "wc:westeros", x: -641, y: 47, z: 12819, time: 1696965111438L, xRot: -0.29999194f, yRot: 83.95981f }
"wwhunting3": { dim: "wc:westeros", x: 5595, y: 48, z: -6132, time: 1696965111438L, xRot: 16.499838f, yRot: -327.546f }
"dragonsquare": { dim: "wc:westeros", x: 2845, y: 42, z: 12962, time: 1696965111438L, xRot: 0.4500048f, yRot: -72.843506f }
"Willumcaves": { dim: "wc:westeros", x: 1478, y: 94, z: 17303, time: 1696965111439L, xRot: 70.06059f, yRot: -120.447266f }
"hornhillv6": { dim: "wc:westeros", x: -4086, y: 116, z: 19778, time: 1696965111439L, xRot: 57.299965f, yRot: -185.69092f }
"greyglen": { dim: "wc:westeros", x: 3470, y: 69, z: 2847, time: 1696965111439L, xRot: -1.8000032f, yRot: -271.84094f }
"rmquarry2": { dim: "wc:westeros", x: 6123, y: 105, z: 7504, time: 1696965111439L, xRot: 11.249886f, yRot: -201.49644f }
"hwh1": { dim: "wc:westeros", x: -8409, y: 44, z: 19479, time: 1696965111450L, xRot: 0.3760756552219391f, yRot: 201.9366912841797f }
"inchf1": { dim: "wc:westeros", x: -1523, y: 44, z: 14004, time: 1696965111450L, xRot: 6.899989f, yRot: -46.482086f }
"coldwatermine": { dim: "wc:westeros", x: 6873, y: 60, z: 1168, time: 1696965111450L, xRot: 32.40006f, yRot: -28.991913f }
"lyberrwinery": { dim: "wc:westeros", x: -1486, y: 63, z: 14734, time: 1696965111450L, xRot: 85.04994f, yRot: 156.16676f }
"bloodmoon": { dim: "wc:westeros", x: -5746, y: 45, z: -5774, time: 1696965111451L, xRot: -0.30006164f, yRot: -80.545425f }
"orkwood": { dim: "wc:westeros", x: -7397, y: 35, z: 4900, time: 1696965111451L, xRot: -18.303356f, yRot: -33.657696f }
"goodbrother": { dim: "wc:westeros", x: -7120, y: 66, z: 5209, time: 1696965111451L, xRot: 0.4220369f, yRot: -57.56598f }
"littlesister": { dim: "wc:westeros", x: 3939, y: 35, z: -315, time: 1696965111451L, xRot: -4.1743426f, yRot: 5.01001f }
"wfmap": { dim: "wc:playground", x: 115, y: 20, z: -1222, time: 1696965111451L, xRot: 2.8500655f, yRot: 179.16582f }
"inchv5": { dim: "wc:westeros", x: -1511, y: 68, z: 13771, time: 1696965111451L, xRot: 4.5000057f, yRot: 229.81786f }
"watermankeep": { dim: "wc:westeros", x: -3723, y: 42, z: -2571, time: 1696965111451L, xRot: -31.95007f, yRot: 200.85315f }
"peat1": { dim: "wc:westeros", x: -1641, y: 54, z: -8186, time: 1696965111451L, xRot: 39.299965f, yRot: 178.47122f }
"kingswood": { dim: "wc:westeros", x: 3740, y: 43, z: 13881, time: 1696965111451L, xRot: 3.5975733f, yRot: 332.28946f }
"nunny": { dim: "wc:westeros", x: -6361, y: 50, z: 15903, time: 1696965111452L, xRot: 19.350029f, yRot: 286.27957f }
"bonifer": { dim: "wc:westeros", x: 3963, y: 57, z: 17026, time: 1696965111452L, xRot: 10.529954f, yRot: 273.04886f }
"branch": { dim: "wc:westeros", x: -2376, y: 50, z: -9373, time: 1696965111452L, xRot: -15.299992f, yRot: -181.95737f }
"fleabottom": { dim: "wc:westeros", x: 3126, y: 46, z: 12962, time: 1696965111452L, xRot: 7.0499964f, yRot: 176.75813f }
"breakstonequarry2": { dim: "wc:westeros", x: 5184, y: 53, z: 661, time: 1696965111452L, xRot: -3.750004f, yRot: 87.74965f }
"builderwall": { dim: "wc:playground", x: -719, y: 188, z: -1296, time: 1696965111452L, xRot: 23.70001f, yRot: -264.6082f }
"kingsmine": { dim: "wc:westeros", x: 687, y: 76, z: 18127, time: 1696965111452L, xRot: 20.85061f, yRot: -142.01369f }
"auctionhall": { dim: "wc:westeros", x: -7072, y: 43, z: 12132, time: 1696965111452L, xRot: -12.600677f, yRot: -85.57446f }
"jobs": { dim: "wc:playground", x: -1035, y: 21, z: 1342, time: 1696965111452L, xRot: -7.9500036f, yRot: -178.00429f }
"ironislands": { dim: "wc:westeros", x: -7511, y: 108, z: 6578, time: 1696965111453L, xRot: -13.350012f, yRot: 12.599567f }
"bhamlet2": { dim: "wc:westeros", x: -5892, y: 42, z: 19239, time: 1696965111453L, xRot: 13.055984f, yRot: -179.36694f }
"stokeford": { dim: "wc:westeros", x: -4454, y: 35, z: 17282, time: 1696965111453L, xRot: 28.866016f, yRot: -357.32068f }
"khhamlet1": { dim: "wc:westeros", x: 7788, y: 50, z: -9355, time: 1696965111453L, xRot: 21.749825f, yRot: 82.03993f }
"twins": { dim: "wc:westeros", x: -2307, y: 38, z: 3183, time: 1696965111453L, xRot: 6.450021f, yRot: 271.65292f }
"smtrees": { dim: "wc:playground", x: 192, y: 20, z: -323, time: 1696965111453L, xRot: -6.150041f, yRot: 201.06415f }
"rillscabin1": { dim: "wc:westeros", x: -7387, y: 46, z: -5447, time: 1696965111453L, xRot: 0.74995905f, yRot: -86.826096f }
"greygarden": { dim: "wc:westeros", x: -5739, y: 50, z: 5902, time: 1696965111454L, xRot: 13.350289f, yRot: -31.199938f }
"wfsheepfarm2": { dim: "wc:westeros", x: -908, y: 70, z: -8398, time: 1696965111454L, xRot: 42.44995f, yRot: -140.87604f }
"bearislandvillage2": { dim: "wc:westeros", x: -4519, y: 100, z: -13267, time: 1696965111454L, xRot: -1.4999785f, yRot: -180.32617f }
"sloane": { dim: "wc:westeros", x: 2631, y: 50, z: 16788, time: 1696965111454L, xRot: -2.4528244f, yRot: -6.990962f }
"ironmaker": { dim: "wc:westeros", x: -8921, y: 68, z: 5301, time: 1696965111454L, xRot: -23.099966f, yRot: 38.1007f }
"stairs": { dim: "wc:westeros", x: 7050, y: 88, z: 13381, time: 1696965111454L, xRot: 6.6000366f, yRot: 92.081215f }
"wh5": { dim: "wc:westeros", x: 1330, y: 75, z: -3007, time: 1696965111455L, xRot: 47.40005f, yRot: -90.61093f }
"watergardens": { dim: "wc:westeros", x: 9135, y: 70, z: 24555, time: 1696965111455L, xRot: 28.050016f, yRot: 183.1203f }
"ramsfield": { dim: "wc:westeros", x: 7458, y: 45, z: -9522, time: 1696965111455L, xRot: -3.0001817f, yRot: -317.70926f }
"rillscabin5": { dim: "wc:westeros", x: -5750, y: 47, z: -6742, time: 1696965111455L, xRot: 8.850025f, yRot: -6.3746223f }
"wytherton": { dim: "wc:westeros", x: -5898, y: 46, z: 18717, time: 1696965111455L, xRot: -1.6499796f, yRot: 174.76086f }
"groost": { dim: "wc:westeros", x: 6437, y: 73, z: 17633, time: 1696965111455L, xRot: -9.89999f, yRot: 239.44038f }
"newkeephamlet1": { dim: "wc:westeros", x: 894, y: 72, z: 2195, time: 1696965111455L, xRot: -12.000001f, yRot: 41.85285f }
"blackwaterferry": { dim: "wc:westeros", x: 2890, y: 37, z: 13522, time: 1696965111455L, xRot: 5.400019f, yRot: -358.14282f }
"westbrookdelta": { dim: "wc:westeros", x: -6575, y: 55, z: 17273, time: 1696965111456L, xRot: 42.14981f, yRot: -69.92853f }
"csm2": { dim: "wc:westeros", x: -1562, y: 56, z: 18141, time: 1696965111456L, xRot: 47.999928f, yRot: 178.93805f }
"woodhedge": { dim: "wc:westeros", x: -240, y: 39, z: 7072, time: 1696965111456L, xRot: -0.8850738f, yRot: 11.535997f }
"sunhouse": { dim: "wc:westeros", x: -6725, y: 51, z: 25042, time: 1696965111456L, xRot: -11.964916f, yRot: -357.403f }
"redwater": { dim: "wc:westeros", x: -3378, y: 59, z: 22638, time: 1696965111467L, xRot: 33.599995f, yRot: -112.75613f }
"mourningwood": { dim: "wc:westeros", x: -2259, y: 66, z: -6118, time: 1696965111468L, xRot: 12.7500105f, yRot: 262.4784f }
"vaith": { dim: "wc:westeros", x: 3146, y: 42, z: 24857, time: 1696965111468L, xRot: 2.9999893f, yRot: -124.52618f }
"oldbuilds": { dim: "wc:playground", x: -529, y: 21, z: -328, time: 1696965111468L, xRot: 3.000006f, yRot: -179.84921f }
"breakwaterkeep": { dim: "wc:westeros", x: 3105, y: 56, z: -557, time: 1696965111468L, xRot: -7.893041f, yRot: -118.49193f }
"moore": { dim: "wc:westeros", x: 8970, y: 39, z: 4001, time: 1696965111468L, xRot: -4.9285903f, yRot: -87.42633f }
"cmham2": { dim: "wc:westeros", x: -7422, y: 43, z: 15987, time: 1696965111468L, xRot: 1.950031f, yRot: -14.805267f }
"start1": { dim: "wc:westeros", x: -2045, y: 59, z: 20922, time: 1696965111468L, xRot: -7.194742f, yRot: 316.4975f }
"littlesistercave": { dim: "wc:westeros", x: 4094, y: 34, z: -57, time: 1696965111469L, xRot: 11.275633f, yRot: 235.71072f }
"gateofthegods": { dim: "wc:westeros", x: 2338, y: 44, z: 12683, time: 1696965111469L, xRot: -6.000004f, yRot: 314.75537f }
"shephardton": { dim: "wc:westeros", x: 6884, y: 34, z: -5075, time: 1696965111469L, xRot: -7.3712454f, yRot: 10.83095f }
"oalog": { dim: "wc:westeros", x: 7473, y: 57, z: 4122, time: 1696965111469L, xRot: 23.795006f, yRot: 185.27695f }
"bikinibottom": { dim: "wc:playground", x: -435, y: 21, z: -1007, time: 1696965111469L, xRot: 34.80001f, yRot: -46.058292f }
"stackhousevillage": { dim: "wc:westeros", x: -6578, y: 89, z: 16793, time: 1696965111469L, xRot: 13.5144415f, yRot: 77.04974f }
"shadyglen": { dim: "wc:westeros", x: 6014, y: 60, z: 18221, time: 1696965111469L, xRot: 4.3590646f, yRot: 242.30402f }
"towerofglimmering": { dim: "wc:westeros", x: -6434, y: 46, z: 5323, time: 1696965111470L, xRot: -0.4549775f, yRot: -166.88882f }
"hawthornecastle": { dim: "wc:westeros", x: -2018, y: 60, z: 12892, time: 1696965111470L, xRot: -16.499918f, yRot: -183.14793f }
"csham3": { dim: "wc:westeros", x: -1118, y: 63, z: 18887, time: 1696965111470L, xRot: 16.350239f, yRot: -182.58234f }
"griffinscrown": { dim: "wc:westeros", x: 5000, y: 75, z: -12041, time: 1696965111470L, xRot: -6.7499833f, yRot: -162.48389f }
"torrhenshillside": { dim: "wc:westeros", x: -3117, y: 39, z: -6099, time: 1696965111470L, xRot: -17.100075f, yRot: -49.518463f }
"brightstone": { dim: "wc:westeros", x: 6068, y: 64, z: 1349, time: 1696965111470L, xRot: 6.899988f, yRot: -152.84996f }
"woods": { dim: "wc:westeros", x: -5421, y: 46, z: -10220, time: 1696965111470L, xRot: 15.89997f, yRot: -182.25989f }
"ltlogging": { dim: "wc:westeros", x: -763, y: 92, z: 16860, time: 1696965111471L, xRot: -1.2000284f, yRot: 270.5832f }
"klquarry": { dim: "wc:westeros", x: 2909, y: 59, z: 12138, time: 1696965111471L, xRot: 6.449995f, yRot: -98.92212f }
"threehills": { dim: "wc:westeros", x: -270, y: 56, z: 16548, time: 1696965111471L, xRot: 12.4500065f, yRot: -3.657135f }
"volmark": { dim: "wc:westeros", x: -6222, y: 41, z: 5345, time: 1696965111471L, xRot: -5.2167683f, yRot: 324.1814f }
"bbholdfast1": { dim: "wc:westeros", x: -517, y: 54, z: 15525, time: 1696965111471L, xRot: -23.250086f, yRot: -217.17154f }
"sslodge": { dim: "wc:westeros", x: -8993, y: 47, z: -6917, time: 1696965111471L, xRot: 12.449994f, yRot: -177.14655f }
"longtable": { dim: "wc:westeros", x: -1491, y: 114, z: 16726, time: 1696965111471L, xRot: -4.949993f, yRot: -180.20534f }
"bearpit": { dim: "wc:westeros", x: 1864, y: 45, z: 9157, time: 1696965111472L, xRot: 8.759455f, yRot: -87.42536f }
"cnhunt1": { dim: "wc:westeros", x: 6266, y: 67, z: 18677, time: 1696965111472L, xRot: 24.900045f, yRot: 88.92291f }
"littlefinger": { dim: "wc:westeros", x: 7672, y: 39, z: 590, time: 1696965111472L, xRot: -22.649837f, yRot: -352.7894f }
"honeyholt": { dim: "wc:westeros", x: -7531, y: 37, z: 21126, time: 1696965111472L, xRot: -3.392235f, yRot: 187.74606f }
"wheatfield": { dim: "wc:westeros", x: 1656, y: 67, z: 11399, time: 1696965111472L, xRot: 5.777839f, yRot: -80.321075f }
"felwood": { dim: "wc:westeros", x: 5117, y: 97, z: 16403, time: 1696965111472L, xRot: -22.710918f, yRot: -180.32327f }
"___": { dim: "wc:playground", x: 199, y: 21, z: 780, time: 1696965111472L, xRot: 15.943047f, yRot: -270.3135f }
"donnigerq2": { dim: "wc:westeros", x: 6844, y: 76, z: 461, time: 1696965111472L, xRot: 19.350012f, yRot: 25.422491f }
"stonybeacon": { dim: "wc:westeros", x: -5460, y: 48, z: -5473, time: 1696965111473L, xRot: -4.0500093f, yRot: -100.77981f }
"oldlasthearth": { dim: "wc:playground", x: -373, y: 21, z: -357, time: 1696965111483L, xRot: -5.850013f, yRot: 90.15038f }
"bushymine": { dim: "wc:westeros", x: -1017, y: 71, z: 13425, time: 1696965111484L, xRot: 27.600018f, yRot: -258.94034f }
"stoneypond": { dim: "wc:westeros", x: -3946, y: 57, z: 4574, time: 1696965111484L, xRot: 11.699952f, yRot: 1.774757f }
"egen": { dim: "wc:westeros", x: 3886, y: 39, z: 4023, time: 1696965111484L, xRot: -18.524784f, yRot: -245.51343f }
"crag": { dim: "wc:westeros", x: -6771, y: 60, z: 8697, time: 1696965111484L, xRot: -14.297325f, yRot: 73.799866f }
"larchwood": { dim: "wc:westeros", x: 5301, y: 54, z: -9571, time: 1696965111484L, xRot: -8.400178f, yRot: 10.948577f }
"dragongatedefences": { dim: "wc:westeros", x: 3841, y: 86, z: 12366, time: 1696965111484L, xRot: 22.967913f, yRot: 224.072f }
"thepaps": { dim: "wc:westeros", x: 8812, y: 34, z: 57, time: 1696965111484L, xRot: -1.6500084f, yRot: -296.09506f }
"overlook": { dim: "wc:westeros", x: 6347, y: 39, z: 550, time: 1696965111484L, xRot: -34.8f, yRot: -27.97739f }
"phhamlet1": { dim: "wc:westeros", x: -6746, y: 100, z: 23821, time: 1696965111484L, xRot: 8.998277f, yRot: 175.2329f }
"huntsmenhide": { dim: "wc:westeros", x: -3640, y: 45, z: -6416, time: 1696965111484L, xRot: 0.44991603f, yRot: -240.46814f }
"westbrook": { dim: "wc:westeros", x: -5684, y: 72, z: 16845, time: 1696965111485L, xRot: 63.599987f, yRot: 130.09898f }
"hhlumbermill": { dim: "wc:westeros", x: 4780, y: 57, z: 3320, time: 1696965111485L, xRot: 15.089585f, yRot: 340.15167f }
"bandaseptry": { dim: "wc:westeros", x: -9652, y: 73, z: 20607, time: 1696965111485L, xRot: -9.000065f, yRot: 178.6014f }
"ironoaksmine": { dim: "wc:westeros", x: 5059, y: 116, z: 5342, time: 1696965111485L, xRot: 0.15004587f, yRot: 47.39159f }
"inchfa2": { dim: "wc:westeros", x: -965, y: 43, z: 14599, time: 1696965111485L, xRot: 0.4500078f, yRot: 224.42667f }
"greymine": { dim: "wc:westeros", x: 531, y: 68, z: 3481, time: 1696965111485L, xRot: 19.049534f, yRot: 101.09274f }
"rillscabin3": { dim: "wc:westeros", x: -6196, y: 46, z: -3324, time: 1696965111485L, xRot: -9.14991f, yRot: 12.399259f }
"skinnershill": { dim: "wc:westeros", x: 4132, y: 47, z: -11707, time: 1696965111485L, xRot: -12.960306f, yRot: 78.59312f }
"bayofseals": { dim: "wc:westeros", x: 5982, y: 34, z: -13598, time: 1696965111485L, xRot: 31.950027f, yRot: -125.24712f }
"rivercontest": { dim: "wc:playground", x: -1408, y: 94, z: 123, time: 1696965111485L, xRot: 24.15f, yRot: 179.99976f }
"BlackhavenDock": { dim: "wc:westeros", x: 2370, y: 35, z: 20059, time: 1696965111486L, xRot: 0.8999868f, yRot: -179.69934f }
"lghf1": { dim: "wc:westeros", x: -1278, y: 88, z: 19794, time: 1696965111486L, xRot: 26.399971f, yRot: 92.70115f }
"fishingvillage": { dim: "wc:westeros", x: -9744, y: 35, z: -6466, time: 1696965111486L, xRot: 12.749956f, yRot: 176.25323f }
"newbarrel": { dim: "wc:westeros", x: -2454, y: 57, z: 16272, time: 1696965111486L, xRot: -16.050001f, yRot: -228.12384f }
"Willum5": { dim: "wc:westeros", x: 1284, y: 101, z: 17444, time: 1696965111486L, xRot: 53.561405f, yRot: -186.89726f }
"wells": { dim: "wc:westeros", x: 8481, y: 74, z: 23863, time: 1696965111486L, xRot: -7.050009f, yRot: -270.91986f }
"harroway": { dim: "wc:westeros", x: 1384, y: 38, z: 7835, time: 1696965111486L, xRot: 7.799944f, yRot: 310.4906f }
"professions": { dim: "wc:playground", x: -1035, y: 21, z: 1342, time: 1696965111486L, xRot: -7.9500036f, yRot: -178.00429f }
"fmhf1": { dim: "wc:westeros", x: -428, y: 39, z: 6169, time: 1696965111487L, xRot: -1.0500213f, yRot: 228.26001f }
"bushyhf1": { dim: "wc:westeros", x: -1482, y: 46, z: 12983, time: 1696965111487L, xRot: -20.849995f, yRot: 90.40992f }
"darkdell": { dim: "wc:westeros", x: -2054, y: 117, z: 20172, time: 1696965111487L, xRot: 7.7998833656311035f, yRot: 177.46495056152344f }
"terrickhf2": { dim: "wc:westeros", x: 176, y: 47, z: 6480, time: 1696965111487L, xRot: 16.649986f, yRot: 272.76263f }
"moorebeacon1": { dim: "wc:westeros", x: 9490, y: 37, z: 2861, time: 1696965111487L, xRot: -12.449864f, yRot: -183.4066f }
"dfhunt3": { dim: "wc:westeros", x: 5301, y: 34, z: -10504, time: 1696965111487L, xRot: -16.50026f, yRot: -287.39508f }
"damascus": { dim: "wc:playground", x: 114, y: 21, z: 1066, time: 1696965111487L, xRot: 17.399899f, yRot: -47.086025f }
"ywhamlet3": { dim: "wc:westeros", x: -5370, y: 54, z: 7117, time: 1696965111487L, xRot: 1.3499954f, yRot: -128.71089f }
"cole": { dim: "wc:westeros", x: 3306, y: 71, z: 19848, time: 1696965111487L, xRot: 41.4f, yRot: -179.39464f }
"lgtrees": { dim: "wc:playground", x: 411, y: 20, z: -324, time: 1696965111488L, xRot: -1.349998f, yRot: 206.4649f }
"barbelpoint": { dim: "wc:westeros", x: 4935, y: 49, z: 12824, time: 1696965111488L, xRot: 26.25009f, yRot: 43.355316f }
"uplands": { dim: "wc:westeros", x: -6567, y: 58, z: 21750, time: 1696965111488L, xRot: -20.400042f, yRot: -20.218409f }
"dfruin3": { dim: "wc:westeros", x: 4651, y: 62, z: -11218, time: 1696965111488L, xRot: 43.650074f, yRot: 118.34939f }
"yelwt2": { dim: "wc:westeros", x: -7269, y: 102, z: 22684, time: 1696965111488L, xRot: 42.91862f, yRot: -262.53775f }
"ashfordmine1": { dim: "wc:westeros", x: -191, y: 58, z: 17834, time: 1696965111488L, xRot: 3.300455f, yRot: -180.10976f }
"wintergames": { dim: "wc:playground", x: -1133, y: 21, z: 144, time: 1696965111488L, xRot: 6.33623f, yRot: -88.35497f }
"waterman": { dim: "wc:westeros", x: -3635, y: 40, z: -2515, time: 1696965111488L, xRot: -11.250091f, yRot: 90.90349f }
"sealskin": { dim: "wc:westeros", x: -8942, y: 35, z: 4726, time: 1696965111488L, xRot: -18.935719f, yRot: -312.8599f }
"brightwaterkeep": { dim: "wc:westeros", x: -7262, y: 78, z: 20097, time: 1696965111489L, xRot: -14.400212f, yRot: -5.0852757f }
"dgh3": { dim: "wc:westeros", x: 6089, y: 70, z: 538, time: 1696965111489L, xRot: 44.580437f, yRot: 4.6973267f }
"ochold4": { dim: "wc:westeros", x: 4655, y: 56, z: -3053, time: 1696965111489L, xRot: 30.149956f, yRot: 232.65544f }
"inchf3": { dim: "wc:westeros", x: -602, y: 42, z: 14377, time: 1696965111489L, xRot: 17.70001f, yRot: -340.4826f }
"deeplake": { dim: "wc:westeros", x: 2407, y: 83, z: -16008, time: 1696965111500L, xRot: 3.749980926513672f, yRot: 180.7625274658203f }
"Greyruins": { dim: "wc:westeros", x: 500, y: 57, z: 3368, time: 1696965111501L, xRot: 1.799998f, yRot: 182.69281f }
"mmh": { dim: "wc:westeros", x: -4951, y: 68, z: 9806, time: 1696965111501L, xRot: 11.400043f, yRot: 262.45462f }
"bearislandvillage3": { dim: "wc:westeros", x: -3828, y: 54, z: -13331, time: 1696965111501L, xRot: 8.941142f, yRot: 179.66742f }
"musgood": { dim: "wc:westeros", x: 3304, y: 124, z: 17526, time: 1696965111501L, xRot: 3.5998309f, yRot: -176.80658f }
"boneway": { dim: "wc:westeros", x: 1024, y: 99, z: 21434, time: 1696965111501L, xRot: -2.250429f, yRot: -35.42697f }
"chep": { dim: "wc:playground", x: -218, y: 21, z: 858, time: 1696965111502L, xRot: -6.789925f, yRot: 45.878723f }
"misc": { dim: "wc:playground", x: -763, y: 20, z: -869, time: 1696965111502L, xRot: 78.149994f, yRot: -174.90884f }
"shadowtest": { dim: "wc:playground", x: 864, y: 20, z: 1293, time: 1696965111502L, xRot: 11.249973f, yRot: -49.38855f }
"lyberr": { dim: "wc:westeros", x: -1903, y: 44, z: 14878, time: 1696965111502L, xRot: 2.2499418f, yRot: -169.4823f }
"dragongate": { dim: "wc:westeros", x: 3442, y: 48, z: 12652, time: 1696965111502L, xRot: 7.0500937f, yRot: 49.253944f }
"inchv6": { dim: "wc:westeros", x: -828, y: 45, z: 13840, time: 1696965111503L, xRot: 0.75007325f, yRot: -99.432274f }
"moss": { dim: "wc:westeros", x: 2562, y: 54, z: -4584, time: 1696965111503L, xRot: -4.2000155f, yRot: -236.46419f }
"ravenscar": { dim: "wc:westeros", x: -7394, y: 69, z: -11827, time: 1696965111503L, xRot: 5.249427f, yRot: 306.7395f }
"whytehaven": { dim: "wc:westeros", x: 7276, y: 46, z: 5296, time: 1696965111503L, xRot: -5.400075f, yRot: -314.90002f }
"greenfield": { dim: "wc:westeros", x: -7689, y: 52, z: 13110, time: 1696965111503L, xRot: -11.263282775878906f, yRot: -84.4483413696289f }
"hornhilltown2": { dim: "wc:westeros", x: -4533, y: 93, z: 19310, time: 1696965111503L, xRot: 43.19999f, yRot: -4.6442895f }
"karhold": { dim: "wc:westeros", x: 7562, y: 91, z: -11041, time: 1696965111503L, xRot: -5.7002025f, yRot: -127.060265f }
"oldninestars": { dim: "wc:playground", x: -552, y: 24, z: -610, time: 1696965111503L, xRot: -0.74997085f, yRot: -86.54909f }
"liongate": { dim: "wc:westeros", x: 2293, y: 42, z: 12993, time: 1696965111504L, xRot: 8.999997f, yRot: 288.95718f }
"ruttingmeadow": { dim: "wc:westeros", x: -1162, y: 42, z: 7173, time: 1696965111518L, xRot: 0.90013206f, yRot: -297.59616f }
"groundcover": { dim: "wc:playground", x: 581, y: 28, z: -1161, time: 1696965111518L, xRot: 5.1809435f, yRot: -179.93811f }
"ywhamlet1": { dim: "wc:westeros", x: -5719, y: 38, z: 7020, time: 1696965111518L, xRot: 5.9999857f, yRot: -180.46104f }
"breakstonehamlet3": { dim: "wc:westeros", x: 5314, y: 38, z: 296, time: 1696965111518L, xRot: -4.4999676f, yRot: -65.55032f }
"gww": { dim: "wc:westeros", x: -1155, y: 64, z: 57, time: 1696965111519L, xRot: 23.549614f, yRot: 192.15268f }
"pflumber": { dim: "wc:westeros", x: 2099, y: 86, z: 18161, time: 1696965111519L, xRot: -12.991038f, yRot: -73.56697f }
"ltport": { dim: "wc:westeros", x: -1536, y: 39, z: 16428, time: 1696965111519L, xRot: 43.65f, yRot: -189.33125f }
"birchgrove": { dim: "wc:westeros", x: -5997, y: 45, z: -4004, time: 1696965111519L, xRot: 8.249986f, yRot: 113.62659f }
"savannahpvp": { dim: "wc:playground", x: -1021, y: 61, z: 346, time: 1696965111519L, xRot: 38.999954f, yRot: 0.8991394f }
"ssfisherh3": { dim: "wc:westeros", x: -9901, y: 37, z: -4451, time: 1696965111519L, xRot: 1.6499939f, yRot: -359.5482f }
"tarthv3": { dim: "wc:westeros", x: 9792, y: 88, z: 16321, time: 1696965111519L, xRot: 27.933382f, yRot: 92.41078f }
"hawthornewinery": { dim: "wc:westeros", x: -1954, y: 45, z: 13250, time: 1696965111520L, xRot: 8.099933f, yRot: -279.0016f }
"bhmanse2": { dim: "wc:westeros", x: 2282, y: 83, z: 19305, time: 1696965111520L, xRot: -22.688868f, yRot: -199.02357f }
"uplandskeep": { dim: "wc:westeros", x: -6346, y: 80, z: 21886, time: 1696965111520L, xRot: -10.950049f, yRot: -82.46908f }
"stonetree": { dim: "wc:westeros", x: -6495, y: 56, z: 5988, time: 1696965111520L, xRot: 3.839369f, yRot: 88.22111f }
"sablehall1": { dim: "wc:westeros", x: 4057, y: 123, z: -16119, time: 1696965111520L, xRot: 25.04991f, yRot: 173.06755f }
"quietisle": { dim: "wc:westeros", x: 4053, y: 35, z: 8712, time: 1696965111520L, xRot: -8.096501f, yRot: -140.18492f }
"gthf2": { dim: "wc:westeros", x: -5354, y: 78, z: 10284, time: 1696965111520L, xRot: 1.1999943f, yRot: -265.343f }
"oldoakseptry": { dim: "wc:westeros", x: -7080, y: 37, z: 17025, time: 1696965111520L, xRot: 4.35014f, yRot: -149.3699f }
"Cpt_Jamo": { dim: "wc:playground", x: 226, y: 21, z: 661, time: 1696965111521L, xRot: 13.175764f, yRot: -174.5954f }
"herstonhamlet3": { dim: "wc:westeros", x: 5972, y: 72, z: 19831, time: 1696965111521L, xRot: 45.450005f, yRot: 185.10278f }
"watermanrf": { dim: "wc:westeros", x: -1520, y: 35, z: -2291, time: 1696965111521L, xRot: -0.15000002f, yRot: 358.34958f }
"moreland": { dim: "wc:westeros", x: -7680, y: 57, z: 11448, time: 1696965111521L, xRot: -2.8661923f, yRot: -209.48639f }
"lordhewettstown1": { dim: "wc:westeros", x: -7766, y: 43, z: 17841, time: 1696965111521L, xRot: 2.7348945f, yRot: -172.00336f }
"HayfordFarm2": { dim: "wc:westeros", x: 2067, y: 56, z: 12177, time: 1696965111521L, xRot: 21.30002f, yRot: 309.98413f }
"gwwtest": { dim: "wc:playground", x: 1177, y: 37, z: -488, time: 1696965111522L, xRot: 27.450264f, yRot: 13.575871f }
"oafields": { dim: "wc:westeros", x: 7467, y: 40, z: 4519, time: 1696965111522L, xRot: 3.6000237f, yRot: -94.721634f }
"overton": { dim: "wc:westeros", x: 6484, y: 45, z: -6249, time: 1696965111522L, xRot: 1.1788279f, yRot: -159.12096f }
"bearislandvillage5": { dim: "wc:westeros", x: -5009, y: 81, z: -13006, time: 1696965111522L, xRot: -7.9499865f, yRot: 270.42316f }
"ssfisherh6": { dim: "wc:westeros", x: -9944, y: 42, z: -5226, time: 1696965111522L, xRot: -11.099977f, yRot: -334.34833f }
"sky": { dim: "wc:westeros", x: 3852, y: 93, z: 6175, time: 1696965111522L, xRot: -2.2400067f, yRot: -152.86964f }
"barrowlight": { dim: "wc:westeros", x: 6671, y: 38, z: -6694, time: 1696965111522L, xRot: 16.499975f, yRot: 320.5556f }
"grandisoncrossing": { dim: "wc:westeros", x: 4976, y: 62, z: 16961, time: 1696965111522L, xRot: -2.399489f, yRot: -159.38007f }
"df9": { dim: "wc:westeros", x: 3366, y: 67, z: -12067, time: 1696965111522L, xRot: 8.399953f, yRot: -244.34993f }
"wwlogging2": { dim: "wc:westeros", x: 5873, y: 46, z: -5750, time: 1696965111523L, xRot: 9.000013f, yRot: -32.700222f }
"rillscabin2": { dim: "wc:westeros", x: -7197, y: 41, z: -3039, time: 1696965111523L, xRot: -1.669099f, yRot: -20.416351f }
"nunnsdeep": { dim: "wc:westeros", x: -5337, y: 106, z: 7964, time: 1696965111534L, xRot: -25.04991f, yRot: 198.60289f }
"wwloggin1": { dim: "wc:westeros", x: 6822, y: 46, z: -4691, time: 1696965111534L, xRot: 4.028639f, yRot: 128.431f }
"XMasMiniGames": { dim: "wc:playground", x: -1135, y: 21, z: 144, time: 1696965111534L, xRot: 4.0862246f, yRot: -94.655014f }
"ocfish4": { dim: "wc:westeros", x: 3225, y: 55, z: -1623, time: 1696965111534L, xRot: -10.649958f, yRot: -179.09381f }
"rillshunting3": { dim: "wc:westeros", x: -5029, y: 61, z: -6855, time: 1696965111534L, xRot: -19.050009f, yRot: -125.22057f }
"sftower": { dim: "wc:westeros", x: -5020, y: 49, z: 24588, time: 1696965111534L, xRot: 2.2500725f, yRot: -324.78018f }
"csmanse2": { dim: "wc:westeros", x: -1562, y: 56, z: 18141, time: 1696965111534L, xRot: 25.949903f, yRot: 189.1382f }
"feastfires": { dim: "wc:westeros", x: -9244, y: 49, z: 12188, time: 1696965111534L, xRot: -11.356897f, yRot: -14.805493f }
"hornwood": { dim: "wc:westeros", x: 3354, y: 49, z: -6732, time: 1696965111535L, xRot: -20.84998f, yRot: 277.20123f }
"yew": { dim: "wc:westeros", x: -4699, y: 86, z: 12172, time: 1696965111535L, xRot: -30.280794f, yRot: -116.47488f }
"inncontest": { dim: "wc:playground", x: -1297, y: 121, z: 143, time: 1696965111535L, xRot: -7.650047f, yRot: -180.1388f }
"westpvp": { dim: "wc:playground", x: -1025, y: 22, z: 271, time: 1696965111535L, xRot: 5.3999906f, yRot: -95.15097f }
"hollardcastle": { dim: "wc:westeros", x: 5613, y: 47, z: 10956, time: 1696965111535L, xRot: -11.849994f, yRot: -63.0839f }
"rivermill": { dim: "wc:westeros", x: -6095, y: 40, z: -2751, time: 1696965111535L, xRot: -0.44997305f, yRot: 26.499115f }
"cuyhamlet1": { dim: "wc:westeros", x: -7250, y: 56, z: 24950, time: 1696965111535L, xRot: 22.200018f, yRot: 218.30307f }
"tallyvillage": { dim: "wc:westeros", x: 7011, y: 126, z: 14566, time: 1696965111535L, xRot: 9.749703f, yRot: 175.58438f }
"carbeck": { dim: "wc:westeros", x: 7152, y: 70, z: 16540, time: 1696965111535L, xRot: 13.475013f, yRot: -248.25647f }
"kayce": { dim: "wc:westeros", x: -8982, y: 55, z: 11773, time: 1696965111535L, xRot: 18.75001f, yRot: -249.06287f }
"marchway": { dim: "wc:westeros", x: 4279, y: 88, z: 19123, time: 1696965111535L, xRot: -10.800068f, yRot: 122.33193f }
"foresttest": { dim: "wc:playground", x: -1635, y: 21, z: 958, time: 1696965111536L, xRot: -0.7493052f, yRot: 269.44592f }
"yelvin2": { dim: "wc:westeros", x: -5640, y: 102, z: 22822, time: 1696965111536L, xRot: 14.85269f, yRot: -90.12852f }
"bbmanse": { dim: "wc:westeros", x: -1134, y: 37, z: 15553, time: 1696965111536L, xRot: -9.750057f, yRot: -85.11526f }
"hornhillhf1": { dim: "wc:westeros", x: -4847, y: 111, z: 19990, time: 1696965111536L, xRot: 32.54993f, yRot: -52.85014f }
"baratheon2": { dim: "wc:westeros", x: 7400, y: 52, z: 16958, time: 1696965111536L, xRot: 17.099995f, yRot: -116.45004f }
"rlhf1": { dim: "wc:westeros", x: -5265, y: 64, z: 15245, time: 1696965111536L, xRot: -3.9000142f, yRot: 180.79898f }
"honeytree": { dim: "wc:westeros", x: -1006, y: 47, z: 7044, time: 1696965111536L, xRot: -11.962939f, yRot: -122.525024f }
"wolfsgate": { dim: "wc:westeros", x: 2062, y: 46, z: -2782, time: 1696965111536L, xRot: -22.949997f, yRot: 0.13900757f }
"thecrag": { dim: "wc:westeros", x: -6771, y: 60, z: 8697, time: 1696965111536L, xRot: -14.297325f, yRot: 73.799866f }
"rlhamlet2": { dim: "wc:westeros", x: -5345, y: 55, z: 15589, time: 1696965111536L, xRot: 26.250027f, yRot: 0.048930086f }
"gvhf4": { dim: "wc:westeros", x: 1737, y: 105, z: 15937, time: 1696965111537L, xRot: 76.02628f, yRot: -76.072205f }
"fury": { dim: "wc:westeros", x: 8592, y: 37, z: 10386, time: 1696965111537L, xRot: -15.600219f, yRot: -359.10327f }
"pennytree": { dim: "wc:westeros", x: -1351, y: 70, z: 6461, time: 1696965111537L, xRot: -5.1358013f, yRot: -241.8984f }
"WWwreck": { dim: "wc:westeros", x: 7106, y: 38, z: -6419, time: 1696965111537L, xRot: 4.02874f, yRot: -277.62073f }
"blackwoodvale": { dim: "wc:westeros", x: -1790, y: 36, z: 6460, time: 1696965111537L, xRot: -5.352258f, yRot: 318.39337f }
"oldwillow": { dim: "wc:westeros", x: 705, y: 47, z: 10767, time: 1696965111537L, xRot: 8.437529f, yRot: 358.6722f }
"goldengallery": { dim: "wc:westeros", x: -7671, y: 106, z: 11886, time: 1696965111537L, xRot: -9.75022f, yRot: -173.38074f }
"amberlyhf1": { dim: "wc:westeros", x: 7884, y: 46, z: 18501, time: 1696965111537L, xRot: -7.499997f, yRot: 230.979f }
"inchv3": { dim: "wc:westeros", x: -1019, y: 41, z: 14903, time: 1696965111538L, xRot: -7.050003f, yRot: 225.17686f }
"csham5": { dim: "wc:westeros", x: -1261, y: 50, z: 18312, time: 1696965111538L, xRot: -4.350056f, yRot: 141.5882f }
"sealslapperbay": { dim: "wc:westeros", x: 7822, y: 36, z: -12736, time: 1696965111538L, xRot: 36.6f, yRot: -10.214233f }
"godsgrace": { dim: "wc:westeros", x: 5374, y: 35, z: 24697, time: 1696965111538L, xRot: 5.399651f, yRot: 178.92346f }
"thenorth": { dim: "wc:westeros", x: -950, y: 63, z: -8333, time: 1696965111538L, xRot: 5.250012f, yRot: 86.68411f }
"snow": { dim: "wc:westeros", x: 3819, y: 154, z: 5947, time: 1696965111538L, xRot: -25.65002f, yRot: -16.946655f }
"spdhamlet": { dim: "wc:westeros", x: -8136, y: 47, z: -11582, time: 1696965111538L, xRot: 38.85001f, yRot: 70.05138f }
"fwcamp3": { dim: "wc:westeros", x: 5256, y: 42, z: 16293, time: 1696965111538L, xRot: 10.200062f, yRot: -2.1285286f }
"jmppvp": { dim: "wc:playground", x: -869, y: 47, z: 264, time: 1696965111538L, xRot: 2.5500114f, yRot: -268.70374f }
"fwcamp2": { dim: "wc:westeros", x: 5121, y: 50, z: 16428, time: 1696965111539L, xRot: -3.4499998f, yRot: -0.92922974f }
"thehook": { dim: "wc:westeros", x: 2861, y: 42, z: 13311, time: 1696965111539L, xRot: -6.8998995f, yRot: 259.56027f }
"yelham1": { dim: "wc:westeros", x: -6895, y: 104, z: 22738, time: 1696965111550L, xRot: 13.73028f, yRot: -50.09265f }
"brightglade": { dim: "wc:westeros", x: 6216, y: 38, z: 2706, time: 1696965111551L, xRot: 1.6853635f, yRot: -112.72308f }
"kldocks": { dim: "wc:westeros", x: 2825, y: 40, z: 13460, time: 1696965111551L, xRot: 2.1000228f, yRot: 102.209366f }
"rhhf1": { dim: "wc:westeros", x: 9866, y: 58, z: 18423, time: 1696965111551L, xRot: 4.2479463f, yRot: -76.89093f }
"byrchcrossing": { dim: "wc:westeros", x: 3412, y: 45, z: 12048, time: 1696965111551L, xRot: -3.567758f, yRot: -48.622025f }
"pebble": { dim: "wc:westeros", x: 6045, y: 35, z: 221, time: 1696965111551L, xRot: -12.791993f, yRot: -201.29097f }
"rhhf3": { dim: "wc:westeros", x: 8403, y: 52, z: 18523, time: 1696965111551L, xRot: 26.999937f, yRot: 270.2044f }
"rollingfordkeep": { dim: "wc:westeros", x: 1759, y: 36, z: 12816, time: 1696965111551L, xRot: 3.3228877f, yRot: 0.9575161f }
"plumm": { dim: "wc:westeros", x: -6868, y: 72, z: 14513, time: 1696965111552L, xRot: -1.2350523f, yRot: 358.2319f }
"sweetportsound": { dim: "wc:westeros", x: 7430, y: 46, z: 14135, time: 1696965111552L, xRot: -12f, yRot: -151.71834f }
"sfhamlet7": { dim: "wc:westeros", x: -4899, y: 55, z: 25816, time: 1696965111552L, xRot: 7.6500235f, yRot: 352.16937f }
"cairns": { dim: "wc:westeros", x: -704, y: 48, z: 6882, time: 1696965111552L, xRot: -11.157132f, yRot: 219.24515f }
"Gowerhf3": { dim: "wc:westeros", x: 8594, y: 60, z: 20466, time: 1696965111552L, xRot: 50.099937f, yRot: -266.25125f }
"csruins": { dim: "wc:westeros", x: -1581, y: 90, z: 18923, time: 1696965111552L, xRot: 24.749723f, yRot: -4.8216558f }
"greyhaven": { dim: "wc:westeros", x: 5060, y: 43, z: 2573, time: 1696965111552L, xRot: -16.95003f, yRot: -37.237335f }
"rgfarm": { dim: "wc:westeros", x: 4971, y: 42, z: -4449, time: 1696965111552L, xRot: -7.1999936f, yRot: -233.69638f }
"pfcabin": { dim: "wc:westeros", x: 1920, y: 65, z: 17901, time: 1696965111553L, xRot: -15.399181f, yRot: 41.199245f }
"hwhs1": { dim: "wc:westeros", x: -8171, y: 44, z: 19380, time: 1696965111553L, xRot: -7.988891f, yRot: 96.45991f }
"nickpabshamlet": { dim: "wc:westeros", x: 708, y: 45, z: 7571, time: 1696965111553L, xRot: 32.09996f, yRot: 56.539543f }
"strangersept": { dim: "wc:westeros", x: 3077, y: 51, z: 12909, time: 1696965111553L, xRot: -4.1999726f, yRot: -180.09193f }
"ochamlet2": { dim: "wc:westeros", x: 3999, y: 42, z: -2443, time: 1696965111553L, xRot: 7.19998f, yRot: 271.20572f }
"charlton": { dim: "wc:westeros", x: -759, y: 48, z: 5094, time: 1696965111553L, xRot: 12.9292631149292f, yRot: 307.4714050292969f }
"paps": { dim: "wc:westeros", x: 8812, y: 34, z: 57, time: 1696965111553L, xRot: -1.6500084f, yRot: -296.09506f }
"mlc": { dim: "wc:westeros", x: -5029, y: 83, z: 9698, time: 1696965111553L, xRot: 4.346782f, yRot: 82.138466f }
"inchv2": { dim: "wc:westeros", x: -1849, y: 47, z: 14133, time: 1696965111553L, xRot: 21.299969f, yRot: 262.36758f }
"sandstone": { dim: "wc:westeros", x: -2122, y: 62, z: 24754, time: 1696965111554L, xRot: -9.299997f, yRot: -222.49023f }
"marnasmill": { dim: "wc:westeros", x: 2285, y: 44, z: -4035, time: 1696965111554L, xRot: 0.2977817f, yRot: -178.51454f }
"ironholt": { dim: "wc:westeros", x: -8019, y: 55, z: 6448, time: 1696965111554L, xRot: -25.999338f, yRot: -36.935673f }
"humble": { dim: "wc:westeros", x: -7047, y: 47, z: 4155, time: 1696965111554L, xRot: -4.7264605f, yRot: 237.32512f }
"eaglesclaw": { dim: "wc:westeros", x: -2191, y: 75, z: 5835, time: 1696965111554L, xRot: 12.299997f, yRot: 1.5762519f }
"spottswood": { dim: "wc:westeros", x: 9943, y: 46, z: 24069, time: 1696965111554L, xRot: -13.350254f, yRot: -101.727295f }
"gower": { dim: "wc:westeros", x: 8325, y: 52, z: 20487, time: 1696965111555L, xRot: -8.400005f, yRot: 269.54865f }
"deepdenmine": { dim: "wc:westeros", x: -4175, y: 110, z: 11876, time: 1696965111555L, xRot: 5.282531f, yRot: 0.10819755f }
"parchmentshf1": { dim: "wc:westeros", x: 8207, y: 44, z: 15798, time: 1696965111555L, xRot: -3.1500263f, yRot: -88.764275f }
"tspastures": { dim: "wc:westeros", x: -1642, y: 43, z: -5675, time: 1696965111555L, xRot: 0.75027055f, yRot: 2.1845703f }
"griffinsroost": { dim: "wc:westeros", x: 6436, y: 73, z: 17633, time: 1696965111555L, xRot: -13.7999935f, yRot: 253.24039f }
"chatayas": { dim: "wc:westeros", x: 2996, y: 62, z: 12785, time: 1696965111555L, xRot: -29.399942f, yRot: -53.34193f }
"thenn": { dim: "wc:westeros", x: -1902, y: 34, z: -24462, time: 1696965111555L, xRot: 1.3123916f, yRot: -264.3112f }
"ocfish6": { dim: "wc:westeros", x: 4743, y: 42, z: -1663, time: 1696965111556L, xRot: 24.449968f, yRot: -252.44449f }
"widowswatch": { dim: "wc:westeros", x: 8508, y: 35, z: -3920, time: 1696965111556L, xRot: -8.2930155f, yRot: -357.52737f }
"stonystable": { dim: "wc:westeros", x: -5847, y: 43, z: -3749, time: 1696965111556L, xRot: 20.24949f, yRot: -6.973816f }
"cleganekeep": { dim: "wc:westeros", x: -5878, y: 59, z: 13229, time: 1696965111556L, xRot: -11.550046f, yRot: -228.42297f }
"mosshamlet5": { dim: "wc:westeros", x: 2998, y: 36, z: -4898, time: 1696965111556L, xRot: -9.750022f, yRot: -41.613953f }
"saltshore": { dim: "wc:westeros", x: 4160, y: 38, z: 25892, time: 1696965111556L, xRot: -22.025318f, yRot: 110.41592f }
"klcronesept": { dim: "wc:westeros", x: 2815, y: 40, z: 13462, time: 1696965111568L, xRot: -19.499983f, yRot: -212.77737f }
"greywaterwatch": { dim: "wc:westeros", x: -1155, y: 64, z: 58, time: 1696965111568L, xRot: 22.499619f, yRot: 181.35265f }
"tourneygrounds": { dim: "wc:westeros", x: 2098, y: 41, z: 13316, time: 1696965111568L, xRot: 14.250035f, yRot: -224.49352f }
"yellumber1": { dim: "wc:westeros", x: -7102, y: 52, z: 22361, time: 1696965111568L, xRot: 14.960207f, yRot: -215.65192f }
"lhtvillage2": { dim: "wc:westeros", x: 1107, y: 46, z: 8057, time: 1696965111568L, xRot: 26.249922f, yRot: -10.318125f }
"mamh": { dim: "wc:westeros", x: -4849, y: 69, z: 9621, time: 1696965111568L, xRot: 11.376817f, yRot: -36.341553f }
"sshf3": { dim: "wc:westeros", x: -8437, y: 67, z: -6851, time: 1696965111568L, xRot: -1.1999586f, yRot: -42.74872f }
"rosbytemp": { dim: "wc:westeros", x: 4317, y: 45, z: 12530, time: 1696965111568L, xRot: 6.980156f, yRot: 64.741425f }
"herstonlogcamp": { dim: "wc:westeros", x: 5777, y: 66, z: 19885, time: 1696965111569L, xRot: 23.549988f, yRot: 184.65393f }
"wfwatchtower5": { dim: "wc:westeros", x: -1366, y: 47, z: -7866, time: 1696965111569L, xRot: 8.400009f, yRot: -350.47f }
"dunn": { dim: "wc:westeros", x: -3301, y: 60, z: 17551, time: 1696965111569L, xRot: 14.545294f, yRot: -4.548931f }
"pacmanwest": { dim: "wc:playground", x: -552, y: 21, z: 673, time: 1696965111569L, xRot: 4.5000153f, yRot: -89.49927f }
"amberlyf1": { dim: "wc:westeros", x: 7754, y: 51, z: 18325, time: 1696965111569L, xRot: 16.05001f, yRot: -31.135517f }
"yronwood": { dim: "wc:westeros", x: 268, y: 87, z: 22022, time: 1696965111569L, xRot: -19.500454f, yRot: -159.17737f }
"lowther": { dim: "wc:westeros", x: -8418, y: 36, z: 15987, time: 1696965111569L, xRot: -4.5000024f, yRot: -139.61865f }
"olddarry": { dim: "wc:playground", x: -1081, y: 27, z: -673, time: 1696965111569L, xRot: 5.250041f, yRot: -90.59895f }
"oldflowers": { dim: "wc:westeros", x: -5255, y: 40, z: 19131, time: 1696965111569L, xRot: -24.278414f, yRot: -245.1879f }
"cmham4": { dim: "wc:westeros", x: -6838, y: 50, z: 15446, time: 1696965111570L, xRot: 52.799995f, yRot: 126.94523f }
"dosk": { dim: "wc:westeros", x: -7719, y: 44, z: 16141, time: 1696965111570L, xRot: 12.749936f, yRot: -132.12175f }
"nsmarcher2": { dim: "wc:westeros", x: -587, y: 156, z: 20836, time: 1696965111570L, xRot: 28.64994f, yRot: 89.910225f }
"news": { dim: "wc:playground", x: 11, y: 140, z: -40, time: 1696965111570L, xRot: -16.2f, yRot: -180.1477f }
"wildlife": { dim: "wc:playground", x: -748, y: 21, z: 1059, time: 1696965111570L, xRot: 10.650051f, yRot: 89.14552f }
"crasters": { dim: "wc:westeros", x: 2516, y: 57, z: -17540, time: 1696965111570L, xRot: 2.2752917f, yRot: -135.43912f }
"Stoopscorner": { dim: "wc:playground", x: 1820, y: 20, z: 1269, time: 1696965111570L, xRot: 86.03228f, yRot: 182.51057f }
"baelishvl1": { dim: "wc:westeros", x: 7379, y: 49, z: 1002, time: 1696965111570L, xRot: -1.5000155f, yRot: 167.63788f }
"SnugCottage": { dim: "wc:westeros", x: 1377, y: 48, z: 11138, time: 1696965111570L, xRot: 36.000008f, yRot: -78.7743f }
"mosshamlet6": { dim: "wc:westeros", x: 3266, y: 36, z: -5180, time: 1696965111571L, xRot: 17.699863f, yRot: -38.31425f }
"moorecabin2": { dim: "wc:westeros", x: 9197, y: 47, z: 3358, time: 1696965111571L, xRot: -4.4992156f, yRot: -125.63336f }
"map2d": { dim: "wc:playground", x: -49, y: 92, z: -331, time: 1696965111571L, xRot: 4.050009f, yRot: 180.96484f }
"rillshunting2": { dim: "wc:westeros", x: -5141, y: 50, z: -7185, time: 1696965111571L, xRot: -15.749919f, yRot: 214.36407f }
"torrent": { dim: "wc:westeros", x: 3852, y: 75, z: -149, time: 1696965111571L, xRot: -11.524376f, yRot: 273.3592f }
"coldwater": { dim: "wc:westeros", x: 6577, y: 45, z: 1560, time: 1696965111571L, xRot: -18.45004f, yRot: 157.01302f }
"nshamlet2": { dim: "wc:westeros", x: 2673, y: 58, z: 3606, time: 1696965111571L, xRot: 65.84989f, yRot: 72.95566f }
"kingsgrave": { dim: "wc:westeros", x: -1144, y: 112, z: 21517, time: 1696965111571L, xRot: -24.30004f, yRot: -1.5444812f }
"dwmlogging1": { dim: "wc:westeros", x: -5353, y: 46, z: -10068, time: 1696965111572L, xRot: 11.099943f, yRot: -179.10986f }
"jakeyquack": { dim: "wc:playground", x: -320, y: 21, z: 742, time: 1696965111572L, xRot: 7.2000318f, yRot: -220.65523f }
"pottersridge": { dim: "wc:westeros", x: 5253, y: 54, z: 19717, time: 1696965111572L, xRot: -3.331461f, yRot: -101.80442f }
"dwmhamlet": { dim: "wc:westeros", x: -4919, y: 38, z: -10965, time: 1696965111572L, xRot: -18.150005f, yRot: -178.9469f }
"ywhamlet4": { dim: "wc:westeros", x: -5570, y: 55, z: 7290, time: 1696965111572L, xRot: 3.7500086f, yRot: 65.38896f }
"parchmentsh2": { dim: "wc:westeros", x: 8619, y: 36, z: 15384, time: 1696965111572L, xRot: 20.70017f, yRot: 340.23553f }
"phhamlet2": { dim: "wc:westeros", x: -6615, y: 107, z: 23992, time: 1696965111572L, xRot: -4.94706f, yRot: 234.02863f }
"gatesofthemoon": { dim: "wc:westeros", x: 4198, y: 28, z: 6104, time: 1696965111573L, xRot: -23.359669f, yRot: -178.67308f }
"Chyhamlet": { dim: "wc:westeros", x: 7232, y: 51, z: 13152, time: 1696965111573L, xRot: 1.3960571f, yRot: 276.17743f }
"furnish": { dim: "wc:playground", x: -991, y: 21, z: 1160, time: 1696965111573L, xRot: -5.8500104f, yRot: -270.5547f }
"plottingguide": { dim: "wc:playground", x: -940, y: 34, z: 1037, time: 1696965111584L, xRot: 6.2999773f, yRot: -181.30428f }
"chvillage": { dim: "wc:westeros", x: -8392, y: 47, z: 14624, time: 1696965111584L, xRot: 23.103197f, yRot: -23.691742f }
"palette": { dim: "wc:playground", x: -1136, y: 21, z: 909, time: 1696965111584L, xRot: 21.450039f, yRot: -84.40466f }
"yelham3": { dim: "wc:westeros", x: -5806, y: 88, z: 22919, time: 1696965111585L, xRot: 14.341672f, yRot: -57.39191f }
"cliffhunt": { dim: "wc:westeros", x: -5193, y: 79, z: -7437, time: 1696965111585L, xRot: 6.1500206f, yRot: 356.1145f }
"lasthearth": { dim: "wc:westeros", x: 3972, y: 79, z: -12994, time: 1696965111585L, xRot: -18.899986f, yRot: 6.691938f }
"goldentooth": { dim: "wc:westeros", x: -4285, y: 60, z: 9790, time: 1696965111585L, xRot: -6.6000695f, yRot: -328.49237f }
"septtest": { dim: "wc:playground", x: -960, y: 21, z: 1104, time: 1696965111585L, xRot: 4.6500015f, yRot: 236.7448f }
"streetofsteel": { dim: "wc:westeros", x: 2659, y: 45, z: 13325, time: 1696965111585L, xRot: 7.6500854f, yRot: -280.73938f }
"mosshamlet3": { dim: "wc:westeros", x: 1944, y: 57, z: -4815, time: 1696965111585L, xRot: 1.1999545f, yRot: -44.46387f }
"heartshome": { dim: "wc:westeros", x: 4898, y: 43, z: 3539, time: 1696965111585L, xRot: -4.350011f, yRot: 271.58856f }
"baelishkeep": { dim: "wc:westeros", x: 7671, y: 39, z: 590, time: 1696965111585L, xRot: -22.649837f, yRot: -352.7894f }
"ulh1": { dim: "wc:westeros", x: -6627, y: 40, z: 21893, time: 1696965111586L, xRot: 41.69992f, yRot: -184.16931f }
"ashfordseptry": { dim: "wc:westeros", x: -260, y: 56, z: 18660, time: 1696965111586L, xRot: -15.900006f, yRot: -76.89379f }
"gowerhf2": { dim: "wc:westeros", x: 8053, y: 47, z: 20478, time: 1696965111586L, xRot: 37.686848f, yRot: 240.29199f }
"berenluthien": { dim: "wc:westeros", x: -6068, y: 105, z: 23144, time: 1696965111586L, xRot: 17.157679f, yRot: -267.41425f }
"ferrenkeep": { dim: "wc:westeros", x: -3103, y: 61, z: 12700, time: 1696965111586L, xRot: -21.000046f, yRot: -0.039733887f }
"littleivywood": { dim: "wc:westeros", x: -2701, y: 54, z: 16305, time: 1696965111586L, xRot: 8.700006f, yRot: 195.59967f }
"castleblack": { dim: "wc:westeros", x: 3191, y: 42, z: -16036, time: 1696965111586L, xRot: -14.100284f, yRot: 181.48517f }
"inchfa1": { dim: "wc:westeros", x: -1680, y: 45, z: 14109, time: 1696965111586L, xRot: 4.3499594f, yRot: 163.66754f }
"Thawmill": { dim: "wc:westeros", x: 1005, y: 77, z: 18969, time: 1696965111586L, xRot: 40.05f, yRot: 353.7014f }
"midfast": { dim: "wc:westeros", x: 5675, y: 44, z: -13025, time: 1696965111587L, xRot: -22.20042f, yRot: -174.16687f }
"stonehelm2": { dim: "wc:westeros", x: 4191, y: 71, z: 19650, time: 1696965111587L, xRot: 16.845436f, yRot: 180.21428f }
"sharppoint": { dim: "wc:westeros", x: 7764, y: 138, z: 11309, time: 1696965111587L, xRot: 13.046031951904297f, yRot: 1.6076315641403198f }
"appletree": { dim: "wc:westeros", x: -7515, y: 37, z: 20001, time: 1696965111587L, xRot: 4.950026f, yRot: 10.222382f }
"goldengrove": { dim: "wc:westeros", x: -4521, y: 52, z: 16423, time: 1696965111587L, xRot: 21.149324f, yRot: 87.434204f }
"pthamlet": { dim: "wc:westeros", x: 7654, y: 34, z: 25129, time: 1696965111587L, xRot: -4.800218f, yRot: -270.47183f }
"clawislevault": { dim: "wc:westeros", x: 9921, y: 102, z: 8406, time: 1696965111587L, xRot: -10.8000145f, yRot: 1.1694446f }
"kellington": { dim: "wc:westeros", x: 8289, y: 41, z: 19501, time: 1696965111587L, xRot: 5.249949f, yRot: -279.46365f }
"slayneguard": { dim: "wc:westeros", x: 4080, y: 46, z: 19933, time: 1696965111587L, xRot: 14.24975f, yRot: 227.63193f }
"hhhamlet1": { dim: "wc:westeros", x: 5137, y: 37, z: 3613, time: 1696965111588L, xRot: 3.5396419f, yRot: 2.9510193f }
"rillscabin4": { dim: "wc:westeros", x: -5803, y: 48, z: -5337, time: 1696965111588L, xRot: 4.500022f, yRot: 267.32f }
"mediumtrees": { dim: "wc:playground", x: 280, y: 20, z: -323, time: 1696965111588L, xRot: -0.7500011f, yRot: 182.91632f }
"oakenshield": { dim: "wc:westeros", x: 3497, y: 45, z: -16146, time: 1696965111588L, xRot: -5.400003f, yRot: 148.91183f }
"bowmanshill": { dim: "wc:westeros", x: -4832, y: 103, z: 12031, time: 1696965111588L, xRot: 3.7022762f, yRot: -35.41973f }
"Grey": { dim: "wc:westeros", x: 542, y: 57, z: 3678, time: 1696965111588L, xRot: -6.7500405f, yRot: -89.70128f }
"eysley": { dim: "wc:westeros", x: 1873, y: 77, z: 6310, time: 1696965111588L, xRot: 10.650136f, yRot: -294.11823f }
"professiontest": { dim: "wc:playground", x: -1035, y: 21, z: 1342, time: 1696965111589L, xRot: -7.9500036f, yRot: -178.00429f }
"castledarry": { dim: "wc:westeros", x: 2116, y: 39, z: 7918, time: 1696965111589L, xRot: -6.0689154f, yRot: 279.78564f }
"manceswarp1": { dim: "wc:westeros", x: -1424, y: 65, z: -20391, time: 1696965111589L, xRot: 62.84993f, yRot: 214.76744f }
"oldcornfield": { dim: "wc:playground", x: -799, y: 30, z: -463, time: 1696965111589L, xRot: 7.9500155f, yRot: 179.40074f }
"shell": { dim: "wc:westeros", x: 4516, y: 68, z: 640, time: 1696965111589L, xRot: 5.8500733f, yRot: -99.90013f }
"hollowstone": { dim: "wc:westeros", x: 5390, y: 46, z: -10213, time: 1696965111589L, xRot: -13.200002f, yRot: 293.6985f }
"podscrossing": { dim: "wc:westeros", x: 5464, y: 36, z: 3165, time: 1696965111589L, xRot: -5.831713f, yRot: -184.0773f }
"dreadfortdungeons": { dim: "wc:westeros", x: 4317, y: 64, z: -9139, time: 1696965111589L, xRot: 2.700084924697876f, yRot: -3.1311752796173096f }
"biometest": { dim: "wc:playground", x: -974, y: 20, z: 866, time: 1696965111589L, xRot: 9.7507f, yRot: 355.39572f }
"hogwarts": { dim: "wc:playground", x: -1131, y: 83, z: -912, time: 1696965111589L, xRot: 12.899997f, yRot: -266.40808f }
"wildlifetest": { dim: "wc:playground", x: -748, y: 21, z: 1059, time: 1696965111589L, xRot: 10.650051f, yRot: 89.14552f }
"editortest": { dim: "wc:playground", x: -1488, y: 20, z: 895, time: 1696965111590L, xRot: -2.8493283f, yRot: 269.89575f }
"birleymill": { dim: "wc:westeros", x: -8230, y: 48, z: -179, time: 1696965111600L, xRot: 11.425338f, yRot: 141.32108f }
"aryastreamexit": { dim: "wc:westeros", x: 1346, y: 34, z: 8709, time: 1696965111600L, xRot: -3.300023f, yRot: -222.56935f }
"hagsmire": { dim: "wc:westeros", x: -1366, y: 37, z: 4615, time: 1696965111601L, xRot: -2.7000031f, yRot: -81.15525f }
"whispers": { dim: "wc:westeros", x: 8823, y: 67, z: 8847, time: 1696965111601L, xRot: -7.199768f, yRot: -90.743385f }
"wwhunting2": { dim: "wc:westeros", x: 5454, y: 43, z: -4759, time: 1696965111601L, xRot: 5.550003f, yRot: -161.25f }
"gvhf2": { dim: "wc:westeros", x: 1099, y: 98, z: 16019, time: 1696965111601L, xRot: 42.271587f, yRot: -277.73065f }
"stormycrag": { dim: "wc:westeros", x: 6855, y: 49, z: 18132, time: 1696965111601L, xRot: -1.6241748f, yRot: -92.968025f }
"vyprenbrickworks": { dim: "wc:westeros", x: -150, y: 44, z: 5690, time: 1696965111602L, xRot: -1.1999825f, yRot: -34.576714f }
"blackbuckle": { dim: "wc:westeros", x: -516, y: 59, z: 6710, time: 1696965111603L, xRot: 2.3808675f, yRot: -0.08187866f }
"klsmithsept": { dim: "wc:westeros", x: 2466, y: 66, z: 13287, time: 1696965111603L, xRot: -20.699986f, yRot: -264.69333f }
"bandavassal1": { dim: "wc:westeros", x: -8646, y: 51, z: 20401, time: 1696965111603L, xRot: 13.0493555f, yRot: -97.49225f }
"chhamlet2": { dim: "wc:westeros", x: -7993, y: 52, z: 13724, time: 1696965111603L, xRot: 37.34998f, yRot: -209.24152f }
"vypren": { dim: "wc:westeros", x: -284, y: 39, z: 5365, time: 1696965111603L, xRot: -12.900002f, yRot: -91.72664f }
"battlevalley": { dim: "wc:westeros", x: -1063, y: 46, z: 6561, time: 1696965111603L, xRot: 29.228336f, yRot: 86.55214f }
"siegeprototype": { dim: "wc:playground", x: -837, y: 59, z: 754, time: 1696965111603L, xRot: 69.1499f, yRot: 93.00016f }
"crossroads": { dim: "wc:westeros", x: 1868, y: 48, z: 7511, time: 1696965111604L, xRot: -11.100073f, yRot: 294.15378f }
"hasty": { dim: "wc:westeros", x: 3632, y: 67, z: 17091, time: 1696965111604L, xRot: 6.980998f, yRot: 261.08688f }
"cresseyhf": { dim: "wc:westeros", x: 3350, y: 42, z: 10824, time: 1696965111604L, xRot: -10.800428f, yRot: -271.53574f }