-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKiln_Coordinate.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
4100 lines (4100 loc) · 459 KB
/
Kiln_Coordinate.csv
File metadata and controls
4100 lines (4100 loc) · 459 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
X_Coords;Y_Coords;On the picture;X_size_picture;Y_size_picture;Esting;Northing
72.50007629394531;338.6808166503906;54578717;1116;659;Could not calculate this field;Could not calculate this field
1022.3683471679688;351.2138671875;54588634;1116;659;Could not calculate this field;Could not calculate this field
842.0751342773438;554.4743041992188;54588634;1116;659;Could not calculate this field;Could not calculate this field
979.8788452148438;544.1390380859375;54588634;1116;659;Could not calculate this field;Could not calculate this field
1069.4512939453125;567.1063232421875;54588634;1116;659;Could not calculate this field;Could not calculate this field
811.2968139648438;464.7015686035156;54588933;1116;659;Could not calculate this field;Could not calculate this field
1090.163818359375;153.1165008544922;54989652;1116;659;Could not calculate this field;Could not calculate this field
16.010669708251953;402.0769348144531;54990629;1116;659;Could not calculate this field;Could not calculate this field
1025.3799438476562;504.8281555175781;55576870;1116;658;Could not calculate this field;Could not calculate this field
134.67274475097656;494.03558349609375;55669877;1116;659;Could not calculate this field;Could not calculate this field
98.07752227783203;11.643936157226562;55670341;1116;659;Could not calculate this field;Could not calculate this field
128.01907348632812;637.0896606445312;55670341;1116;659;Could not calculate this field;Could not calculate this field
637.025390625;607.1480712890625;55670341;1116;659;Could not calculate this field;Could not calculate this field
91.42384338378906;563.899169921875;55670725;1116;659;Could not calculate this field;Could not calculate this field
103.06777954101562;552.2552490234375;55670725;1116;659;Could not calculate this field;Could not calculate this field
854.933349609375;545.6015625;55671446;1116;659;Could not calculate this field;Could not calculate this field
38.194419860839844;296.0886535644531;55671609;1116;659;Could not calculate this field;Could not calculate this field
537.2202758789062;537.2844848632812;55671609;1116;659;Could not calculate this field;Could not calculate this field
495.634765625;420.8451232910156;55671861;1116;659;Could not calculate this field;Could not calculate this field
558.8447265625;587.1870727539062;55672232;1116;659;Could not calculate this field;Could not calculate this field
726.85009765625;415.8548583984375;55672232;1116;659;Could not calculate this field;Could not calculate this field
191.22900390625;242.85923767089844;55672430;1116;659;Could not calculate this field;Could not calculate this field
286.0439147949219;482.3916320800781;55672695;1116;659;Could not calculate this field;Could not calculate this field
811.6844482421875;568.8894653320312;55672695;1116;659;Could not calculate this field;Could not calculate this field
327.62939453125;615.4652099609375;55672695;1116;659;Could not calculate this field;Could not calculate this field
585.4594116210938;583.8602294921875;55672695;1116;659;Could not calculate this field;Could not calculate this field
224.4973907470703;221.2347869873047;55672902;1116;659;Could not calculate this field;Could not calculate this field
156.2971954345703;49.902584075927734;55673182;1116;659;Could not calculate this field;Could not calculate this field
583.7960205078125;306.0691833496094;55673531;1116;659;Could not calculate this field;Could not calculate this field
348.14117431640625;137.4189910888672;55673846;1116;659;Could not calculate this field;Could not calculate this field
739.6607055664062;166.63685607910156;55673846;1116;659;Could not calculate this field;Could not calculate this field
1017.23046875;271.8211975097656;55673846;1116;659;Could not calculate this field;Could not calculate this field
1040.4483642578125;56.02791213989258;55673846;1116;659;Could not calculate this field;Could not calculate this field
498.96160888671875;41.585487365722656;55673898;1116;659;Could not calculate this field;Could not calculate this field
608.747314453125;143.0540771484375;55673898;1116;659;Could not calculate this field;Could not calculate this field
828.3186645507812;63.209938049316406;55673898;1116;659;Could not calculate this field;Could not calculate this field
800.04052734375;259.4934387207031;55673898;1116;659;Could not calculate this field;Could not calculate this field
1029.5924072265625;464.0940246582031;55673898;1116;659;Could not calculate this field;Could not calculate this field
894.8554077148438;459.103759765625;55673898;1116;659;Could not calculate this field;Could not calculate this field
227.82423400878906;349.3180847167969;55673898;1116;659;Could not calculate this field;Could not calculate this field
467.35662841796875;384.2498779296875;55673898;1116;659;Could not calculate this field;Could not calculate this field
1016.2764282226562;474.0656433105469;55674549;1116;658;Could not calculate this field;Could not calculate this field
147.9801025390625;364.2888488769531;55674842;1116;659;Could not calculate this field;Could not calculate this field
385.8490905761719;359.2986145019531;55674842;1116;659;Could not calculate this field;Could not calculate this field
532.22998046875;367.6156921386719;55674842;1116;659;Could not calculate this field;Could not calculate this field
620.3912353515625;357.63519287109375;55674842;1116;659;Could not calculate this field;Could not calculate this field
1019.6118774414062;199.61033630371094;55674842;1116;659;Could not calculate this field;Could not calculate this field
360.8977966308594;424.1719665527344;55674842;1116;659;Could not calculate this field;Could not calculate this field
1070.5859375;50.814456939697266;55737061;1116;659;Could not calculate this field;Could not calculate this field
1072.173828125;133.38795471191406;55737061;1116;659;Could not calculate this field;Could not calculate this field
52.708770751953125;376.3445739746094;55737061;1116;659;Could not calculate this field;Could not calculate this field
47.944915771484375;139.73976135253906;55737061;1116;659;Could not calculate this field;Could not calculate this field
216.26780700683594;157.2072296142578;55737061;1116;659;Could not calculate this field;Could not calculate this field
249.6147918701172;268.3638610839844;55737061;1116;659;Could not calculate this field;Could not calculate this field
886.3834838867188;88.92530059814453;55737061;1116;659;Could not calculate this field;Could not calculate this field
827.6292724609375;120.68433380126953;55737061;1116;659;Could not calculate this field;Could not calculate this field
629.13525390625;352.5252990722656;55737061;1116;659;Could not calculate this field;Could not calculate this field
278.19793701171875;520.8482055664062;55737061;1116;659;Could not calculate this field;Could not calculate this field
961.9494018554688;328.0986328125;55755009;1116;659;Could not calculate this field;Could not calculate this field
333.9757385253906;118.7740478515625;55755621;1116;659;Could not calculate this field;Could not calculate this field
5.877105712890625;506.84765625;55755621;1116;659;Could not calculate this field;Could not calculate this field
993.7008666992188;593.8702392578125;55756215;1116;659;Could not calculate this field;Could not calculate this field
1074.8436279296875;622.0938110351562;55756215;1116;659;Could not calculate this field;Could not calculate this field
38.804561614990234;382.1937255859375;55756686;1116;659;Could not calculate this field;Could not calculate this field
163.45851135253906;599.7501831054688;55756686;1116;659;Could not calculate this field;Could not calculate this field
169.3384246826172;456.280517578125;55756686;1116;659;Could not calculate this field;Could not calculate this field
373.9591064453125;22.343612670898438;55757255;1116;658;Could not calculate this field;Could not calculate this field
533.8923950195312;137.5896453857422;55757255;1116;658;Could not calculate this field;Could not calculate this field
184.6261749267578;548.0070190429688;55758169;1116;659;Could not calculate this field;Could not calculate this field
520.9566040039062;600.9261474609375;55758169;1116;659;Could not calculate this field;Could not calculate this field
304.5762023925781;538.5991821289062;55758169;1116;659;Could not calculate this field;Could not calculate this field
575.0517578125;8.23187255859375;55758169;1116;659;Could not calculate this field;Could not calculate this field
322.2159118652344;274.0035095214844;55758169;1116;659;Could not calculate this field;Could not calculate this field
757.3287353515625;580.9344482421875;55758169;1116;659;Could not calculate this field;Could not calculate this field
684.41796875;281.05938720703125;55758169;1116;659;Could not calculate this field;Could not calculate this field
587.987548828125;459.8084716796875;55758169;1116;659;Could not calculate this field;Could not calculate this field
138.76292419433594;184.62896728515625;55758257;1116;659;Could not calculate this field;Could not calculate this field
7.0530853271484375;408.0653076171875;55758257;1116;659;Could not calculate this field;Could not calculate this field
252.8330535888672;640.9094848632812;55758306;1116;659;Could not calculate this field;Could not calculate this field
83.4918212890625;646.7893676757812;55758306;1116;659;Could not calculate this field;Could not calculate this field
76.43618774414062;637.381103515625;55758339;1116;658;Could not calculate this field;Could not calculate this field
92.89967346191406;366.9059753417969;55758579;1116;659;Could not calculate this field;Could not calculate this field
657.3704223632812;324.5706481933594;55758579;1116;659;Could not calculate this field;Could not calculate this field
652.66650390625;188.15689086914062;55758579;1116;659;Could not calculate this field;Could not calculate this field
560.93994140625;266.9476318359375;55758579;1116;659;Could not calculate this field;Could not calculate this field
223.4335174560547;292.8191833496094;55758579;1116;659;Could not calculate this field;Could not calculate this field
304.5762023925781;112.89413452148438;55758579;1116;659;Could not calculate this field;Could not calculate this field
37.62858963012695;149.34954833984375;55758579;1116;659;Could not calculate this field;Could not calculate this field
836.1194458007812;328.0986328125;55758675;1116;659;Could not calculate this field;Could not calculate this field
1030.1563720703125;562.1187744140625;55758675;1116;659;Could not calculate this field;Could not calculate this field
246.95314025878906;457.45648193359375;55758675;1116;659;Could not calculate this field;Could not calculate this field
361.0232849121094;566.8226928710938;55758675;1116;659;Could not calculate this field;Could not calculate this field
456.2777404785156;381.01776123046875;55758882;1116;659;Could not calculate this field;Could not calculate this field
16.460933685302734;452.7525634765625;55758882;1116;659;Could not calculate this field;Could not calculate this field
866.6949462890625;7.0558929443359375;55759106;1116;659;Could not calculate this field;Could not calculate this field
566.8198852539062;452.75250244140625;55759140;1116;659;Could not calculate this field;Could not calculate this field
477.4453430175781;499.79180908203125;55759289;1116;659;Could not calculate this field;Could not calculate this field
288.11248779296875;171.69317626953125;55759289;1116;659;Could not calculate this field;Could not calculate this field
364.5512390136719;177.57308959960938;55759289;1116;659;Could not calculate this field;Could not calculate this field
991.3489379882812;636.20556640625;55759289;1116;659;Could not calculate this field;Could not calculate this field
983.1170043945312;4.7039337158203125;55759289;1116;659;Could not calculate this field;Could not calculate this field
1104.2431640625;631.5016479492188;55759315;1116;659;Could not calculate this field;Could not calculate this field
759.6807250976562;323.39471435546875;55759463;1116;659;Could not calculate this field;Could not calculate this field
131.70703125;50.567169189453125;55759463;1116;659;Could not calculate this field;Could not calculate this field
107.01144409179688;650.3173217773438;55759463;1116;659;Could not calculate this field;Could not calculate this field
1051.7044677734375;631.3338623046875;55759584;1116;659;Could not calculate this field;Could not calculate this field
377.48699951171875;249.30792236328125;55759695;1116;659;Could not calculate this field;Could not calculate this field
392.7747497558594;485.6800537109375;55759695;1116;659;Could not calculate this field;Could not calculate this field
1093.6593017578125;16.463729858398438;55759695;1116;659;Could not calculate this field;Could not calculate this field
97.60359191894531;655.021240234375;55759695;1116;659;Could not calculate this field;Could not calculate this field
622.0909423828125;5.879913330078125;55759695;1116;659;Could not calculate this field;Could not calculate this field
1017.2201538085938;278.707275390625;55759815;1116;658;Could not calculate this field;Could not calculate this field
591.5154418945312;115.24612426757812;55759906;1116;659;Could not calculate this field;Could not calculate this field
338.6796569824219;572.7025756835938;55759906;1116;659;Could not calculate this field;Could not calculate this field
861.9910278320312;631.5016479492188;55759906;1116;659;Could not calculate this field;Could not calculate this field
4.7011260986328125;384.54571533203125;55759906;1116;659;Could not calculate this field;Could not calculate this field
1045.444091796875;7.0558929443359375;55759906;1116;659;Could not calculate this field;Could not calculate this field
1103.067138671875;151.70150756835938;55759936;1116;659;Could not calculate this field;Could not calculate this field
764.3846435546875;321.042724609375;55759977;1116;659;Could not calculate this field;Could not calculate this field
152.87469482421875;652.6693115234375;55759977;1116;659;Could not calculate this field;Could not calculate this field
131.70703125;51.7431640625;55759977;1116;659;Could not calculate this field;Could not calculate this field
602.0993041992188;272.8275146484375;55760035;1116;659;Could not calculate this field;Could not calculate this field
464.5096130371094;90.55052185058594;55760035;1116;659;Could not calculate this field;Could not calculate this field
210.4977264404297;343.3863525390625;55760035;1116;659;Could not calculate this field;Could not calculate this field
786.766845703125;517.1563720703125;55765082;1116;659;Could not calculate this field;Could not calculate this field
582.24169921875;622.3406982421875;55765082;1116;659;Could not calculate this field;Could not calculate this field
602.6942138671875;429.50274658203125;55765082;1116;659;Could not calculate this field;Could not calculate this field
1099.3980712890625;160.69830322265625;55765082;1116;659;Could not calculate this field;Could not calculate this field
21.25853729248047;116.87149047851562;55765318;1116;659;Could not calculate this field;Could not calculate this field
585.1635131835938;73.04468536376953;55765318;1116;659;Could not calculate this field;Could not calculate this field
1076.0238037109375;35.06144714355469;55765318;1116;659;Could not calculate this field;Could not calculate this field
181.9568328857422;379.8323669433594;55765529;1116;659;Could not calculate this field;Could not calculate this field
398.1690979003906;350.6144714355469;55765529;1116;659;Could not calculate this field;Could not calculate this field
626.0685424804688;359.3798522949219;55765529;1116;659;Could not calculate this field;Could not calculate this field
1005.90087890625;204.52511596679688;55765529;1116;659;Could not calculate this field;Could not calculate this field
523.8059692382812;359.3798522949219;55765529;1116;659;Could not calculate this field;Could not calculate this field
108.9091796875;280.4934387207031;55765828;1116;658;Could not calculate this field;Could not calculate this field
643.5992431640625;-362.3016357421875;55796898;1116;659;Could not calculate this field;Could not calculate this field
593.9288330078125;84.7318344116211;55796898;1116;659;Could not calculate this field;Could not calculate this field
1096.476318359375;631.1060791015625;55796898;1116;659;Could not calculate this field;Could not calculate this field
459.5266418457031;537.60888671875;55796898;1116;659;Could not calculate this field;Could not calculate this field
904.8092651367188;472.3924865722656;55796898;1116;659;Could not calculate this field;Could not calculate this field
834.9484252929688;410.848388671875;55796898;1116;659;Could not calculate this field;Could not calculate this field
98.0826644897461;104.79129028320312;55796898;1116;659;Could not calculate this field;Could not calculate this field
167.9435272216797;44.910552978515625;55796898;1116;659;Could not calculate this field;Could not calculate this field
98.0826644897461;21.623600006103516;55796898;1116;659;Could not calculate this field;Could not calculate this field
728.4937744140625;420.8285217285156;55796898;1116;659;Could not calculate this field;Could not calculate this field
823.304931640625;314.3738708496094;55796898;1116;659;Could not calculate this field;Could not calculate this field
384.1795349121094;535.5999145507812;55796898;1116;659;Could not calculate this field;Could not calculate this field
735.1471557617188;104.79129028320312;55796898;1116;659;Could not calculate this field;Could not calculate this field
680.2565307617188;99.80123138427734;55796898;1116;659;Could not calculate this field;Could not calculate this field
780.0577392578125;33.2670783996582;55796898;1116;659;Could not calculate this field;Could not calculate this field
691.8999633789062;19.960247039794922;55796898;1116;659;Could not calculate this field;Could not calculate this field
740.1372680664062;46.57390594482422;55796898;1116;659;Could not calculate this field;Could not calculate this field
38.201927185058594;28.277015686035156;55796898;1116;659;Could not calculate this field;Could not calculate this field
560.4950561523438;613.777587890625;55796898;1116;659;Could not calculate this field;Could not calculate this field
661.9595947265625;593.8173217773438;55796898;1116;659;Could not calculate this field;Could not calculate this field
578.7919311523438;537.2633056640625;55796898;1116;659;Could not calculate this field;Could not calculate this field
385.8428649902344;633.73779296875;55796898;1116;659;Could not calculate this field;Could not calculate this field
470.6739196777344;638.7279052734375;55796898;1116;659;Could not calculate this field;Could not calculate this field
329.2888488769531;625.4210205078125;55796898;1116;659;Could not calculate this field;Could not calculate this field
454.0382385253906;206.26014709472656;55796974;1116;658;Could not calculate this field;Could not calculate this field
502.2764892578125;129.74427795410156;55796974;1116;658;Could not calculate this field;Could not calculate this field
668.6152954101562;174.65576171875;55796974;1116;658;Could not calculate this field;Could not calculate this field
622.0404663085938;257.8251647949219;55796974;1116;658;Could not calculate this field;Could not calculate this field
625.3672485351562;186.2994842529297;55796974;1116;658;Could not calculate this field;Could not calculate this field
585.4459228515625;197.94320678710938;55796974;1116;658;Could not calculate this field;Could not calculate this field
172.93359375;402.5316162109375;55797045;1116;659;Could not calculate this field;Could not calculate this field
182.91371154785156;169.66209411621094;55797045;1116;659;Could not calculate this field;Could not calculate this field
144.6565704345703;241.18630981445312;55797045;1116;659;Could not calculate this field;Could not calculate this field
53.17211151123047;217.89935302734375;55797045;1116;659;Could not calculate this field;Could not calculate this field
49.845401763916016;153.02854919433594;55797045;1116;659;Could not calculate this field;Could not calculate this field
29.885156631469727;422.49188232421875;55797045;1116;659;Could not calculate this field;Could not calculate this field
58.16217041015625;297.7403259277344;55797045;1116;659;Could not calculate this field;Could not calculate this field
192.89382934570312;347.6409606933594;55797045;1116;659;Could not calculate this field;Could not calculate this field
142.99322509765625;311.04718017578125;55797045;1116;659;Could not calculate this field;Could not calculate this field
467.34722900390625;627.0844116210938;55797045;1116;659;Could not calculate this field;Could not calculate this field
312.6553039550781;635.4011840820312;55797045;1116;659;Could not calculate this field;Could not calculate this field
665.2863159179688;301.0670471191406;55797082;1116;659;Could not calculate this field;Could not calculate this field
587.1087036132812;279.4434509277344;55797082;1116;659;Could not calculate this field;Could not calculate this field
893.165771484375;274.453369140625;55797082;1116;659;Could not calculate this field;Could not calculate this field
259.427978515625;490.68939208984375;55797082;1116;659;Could not calculate this field;Could not calculate this field
66.47894287109375;369.2645568847656;55797082;1116;659;Could not calculate this field;Could not calculate this field
144.6565704345703;296.0769958496094;55797082;1116;659;Could not calculate this field;Could not calculate this field
760.8042602539062;205.88314819335938;55836542;1116;659;Could not calculate this field;Could not calculate this field
456.04852294921875;379.5204772949219;55847671;1116;659;Could not calculate this field;Could not calculate this field
614.1481323242188;491.1418151855469;55848474;1116;659;Could not calculate this field;Could not calculate this field
318.20526123046875;481.7209167480469;55848474;1116;659;Could not calculate this field;Could not calculate this field
264.93731689453125;580.74462890625;55848474;1116;659;Could not calculate this field;Could not calculate this field
821.5152587890625;41.04935836791992;55848491;1116;659;Could not calculate this field;Could not calculate this field
604.6599731445312;330.1014099121094;55848491;1116;659;Could not calculate this field;Could not calculate this field
887.9448852539062;650.860595703125;55848491;1116;659;Could not calculate this field;Could not calculate this field
907.5252685546875;652.0593872070312;55848491;1116;659;Could not calculate this field;Could not calculate this field
934.6980590820312;649.6617431640625;55848491;1116;659;Could not calculate this field;Could not calculate this field
954.6780395507812;648.862548828125;55848491;1116;659;Could not calculate this field;Could not calculate this field
994.2384033203125;651.6597900390625;55848491;1116;659;Could not calculate this field;Could not calculate this field
1019.4131469726562;654.4569702148438;55848491;1116;659;Could not calculate this field;Could not calculate this field
1076.7620849609375;212.28839111328125;55848494;1116;659;Could not calculate this field;Could not calculate this field
1067.766845703125;334.3670654296875;55848494;1116;659;Could not calculate this field;Could not calculate this field
1004.8277587890625;205.82786560058594;55874568;1116;659;Could not calculate this field;Could not calculate this field
849.521240234375;284.41668701171875;55874732;1116;659;Could not calculate this field;Could not calculate this field
643.6934204101562;333.06689453125;55874732;1116;659;Could not calculate this field;Could not calculate this field
563.2333984375;308.7417907714844;55874732;1116;659;Could not calculate this field;Could not calculate this field
134.7372283935547;306.8706359863281;55874732;1116;659;Could not calculate this field;Could not calculate this field
87.95816802978516;349.9073791503906;55874732;1116;659;Could not calculate this field;Could not calculate this field
243.2646484375;497.72918701171875;55874732;1116;659;Could not calculate this field;Could not calculate this field
709.18408203125;467.79058837890625;55874732;1116;659;Could not calculate this field;Could not calculate this field
1042.2509765625;130.9813690185547;55874732;1116;659;Could not calculate this field;Could not calculate this field
836.423095703125;464.04827880859375;55874963;1116;659;Could not calculate this field;Could not calculate this field
993.6007690429688;245.1222686767578;55874963;1116;659;Could not calculate this field;Could not calculate this field
883.4510498046875;19.23137664794922;55875095;1116;659;Could not calculate this field;Could not calculate this field
998.7588500976562;527.7192993164062;55891949;1116;658;Could not calculate this field;Could not calculate this field
804.9992065429688;70.88766479492188;55891949;1116;658;Could not calculate this field;Could not calculate this field
633.2935180664062;33.080909729003906;55891949;1116;658;Could not calculate this field;Could not calculate this field
1041.28466796875;505.6583251953125;55892012;1116;659;Could not calculate this field;Could not calculate this field
912.1134033203125;108.69290924072266;55892012;1116;659;Could not calculate this field;Could not calculate this field
976.6990966796875;88.21453857421875;55892012;1116;659;Could not calculate this field;Could not calculate this field
1063.33837890625;66.16090393066406;55892012;1116;659;Could not calculate this field;Could not calculate this field
656.92138671875;239.439453125;55892165;1116;659;Could not calculate this field;Could not calculate this field
269.40753173828125;267.79412841796875;55892372;1116;659;Could not calculate this field;Could not calculate this field
308.78900146484375;80.33824157714844;55892424;1116;659;Could not calculate this field;Could not calculate this field
130.78468322753906;255.19204711914062;55892424;1116;659;Could not calculate this field;Could not calculate this field
25.242286682128906;148.07440185546875;55892424;1116;659;Could not calculate this field;Could not calculate this field
200.09609985351562;543.4645385742188;55892424;1116;659;Could not calculate this field;Could not calculate this field
329.26739501953125;641.1306762695312;55892424;1116;659;Could not calculate this field;Could not calculate this field
663.222412109375;436.3468933105469;55892424;1116;659;Could not calculate this field;Could not calculate this field
737.2596435546875;409.5675048828125;55892424;1116;659;Could not calculate this field;Could not calculate this field
882.1834716796875;45.68252944946289;55892531;1116;659;Could not calculate this field;Could not calculate this field
480.4923095703125;630.1038208007812;55892708;1116;659;Could not calculate this field;Could not calculate this field
839.6514892578125;551.3408813476562;55892754;1116;659;Could not calculate this field;Could not calculate this field
753.01220703125;318.2024230957031;55892797;1116;659;Could not calculate this field;Could not calculate this field
923.1402587890625;382.7880859375;55893021;1116;659;Could not calculate this field;Could not calculate this field
1036.5589599609375;346.5570983886719;55893021;1116;659;Could not calculate this field;Could not calculate this field
52.02170181274414;319.7777099609375;55893140;1116;659;Could not calculate this field;Could not calculate this field
546.6531982421875;552.9161376953125;55893140;1116;659;Could not calculate this field;Could not calculate this field
475.76654052734375;515.10986328125;55893411;1116;659;Could not calculate this field;Could not calculate this field
376.5251770019531;190.60641479492188;55893411;1116;659;Could not calculate this field;Could not calculate this field
288.3106384277344;179.57958984375;55893411;1116;659;Could not calculate this field;Could not calculate this field
611.2388305664062;426.8953552246094;55893470;1116;659;Could not calculate this field;Could not calculate this field
570.2821044921875;634.82958984375;55893470;1116;659;Could not calculate this field;Could not calculate this field
1094.843505859375;162.25173950195312;55893470;1116;659;Could not calculate this field;Could not calculate this field
466.3149719238281;612.7760009765625;55893506;1116;659;Could not calculate this field;Could not calculate this field
97.70423126220703;118.14447021484375;55893506;1116;659;Could not calculate this field;Could not calculate this field
277.2838134765625;508.808837890625;55893538;1116;659;Could not calculate this field;Could not calculate this field
157.5640869140625;532.437744140625;55893538;1116;659;Could not calculate this field;Could not calculate this field
40.9948844909668;532.437744140625;55893538;1116;659;Could not calculate this field;Could not calculate this field
439.5355529785156;374.9117736816406;55893538;1116;659;Could not calculate this field;Could not calculate this field
836.5009765625;340.2560729980469;55893558;1116;659;Could not calculate this field;Could not calculate this field
258.3807067871094;452.0994873046875;55893558;1116;659;Could not calculate this field;Could not calculate this field
827.0494384765625;185.88063049316406;55957583;1116;659;Could not calculate this field;Could not calculate this field
921.5650024414062;559.2171630859375;55957583;1116;659;Could not calculate this field;Could not calculate this field
620.7396240234375;591.3130493164062;55958127;1116;659;Could not calculate this field;Could not calculate this field
1072.7899169921875;48.833045959472656;55958127;1116;659;Could not calculate this field;Could not calculate this field
885.3340454101562;157.5259552001953;55958127;1116;659;Could not calculate this field;Could not calculate this field
523.0243530273438;403.2664489746094;55958127;1116;659;Could not calculate this field;Could not calculate this field
524.5995483398438;198.4827117919922;55958127;1116;659;Could not calculate this field;Could not calculate this field
556.8248291015625;32.8657112121582;55958127;1116;659;Could not calculate this field;Could not calculate this field
786.8245849609375;420.5370178222656;55979993;1116;659;Could not calculate this field;Could not calculate this field
1060.38818359375;575.02001953125;55979993;1116;659;Could not calculate this field;Could not calculate this field
1022.8402099609375;349.7322998046875;55980451;1116;659;Could not calculate this field;Could not calculate this field
845.8284912109375;558.9280395507812;55980451;1116;659;Could not calculate this field;Could not calculate this field
990.65625;549.2728271484375;55980451;1116;659;Could not calculate this field;Could not calculate this field
1068.9705810546875;563.21923828125;55980451;1116;659;Could not calculate this field;Could not calculate this field
914.4876098632812;170.57496643066406;55980715;1116;659;Could not calculate this field;Could not calculate this field
1009.9666748046875;423.7554016113281;55980715;1116;659;Could not calculate this field;Could not calculate this field
19.773643493652344;148.0461883544922;55980873;1116;659;Could not calculate this field;Could not calculate this field
130.27188110351562;138.39100646972656;55980934;1116;659;Could not calculate this field;Could not calculate this field
382.3795471191406;5.363992691040039;55980934;1116;659;Could not calculate this field;Could not calculate this field
338.3948059082031;358.314697265625;55981091;1116;659;Could not calculate this field;Could not calculate this field
383.45233154296875;7.509589672088623;55981141;1116;659;Could not calculate this field;Could not calculate this field
135.63587951660156;139.46380615234375;55981141;1116;659;Could not calculate this field;Could not calculate this field
505.7513732910156;319.6939392089844;55981156;1116;659;Could not calculate this field;Could not calculate this field
714.9470825195312;302.5291748046875;55981179;1116;659;Could not calculate this field;Could not calculate this field
574.4104614257812;362.60589599609375;55981179;1116;659;Could not calculate this field;Could not calculate this field
342.6860046386719;406.59063720703125;55981363;1116;659;Could not calculate this field;Could not calculate this field
793.2613525390625;72.9502944946289;55981363;1116;659;Could not calculate this field;Could not calculate this field
956.3267211914062;25.747163772583008;55981363;1116;659;Could not calculate this field;Could not calculate this field
858.7020874023438;557.855224609375;55981522;1116;659;Could not calculate this field;Could not calculate this field
607.667236328125;209.19570922851562;55981579;1116;659;Could not calculate this field;Could not calculate this field
577.6288452148438;310.03875732421875;55981579;1116;659;Could not calculate this field;Could not calculate this field
264.3717041015625;278.9276123046875;55981773;1116;659;Could not calculate this field;Could not calculate this field
198.9309844970703;546.054443359375;55981802;1116;659;Could not calculate this field;Could not calculate this field
526.134521484375;600.7671508789062;55981802;1116;659;Could not calculate this field;Could not calculate this field
15.48244857788086;146.973388671875;55981853;1116;659;Could not calculate this field;Could not calculate this field
308.3564453125;90.11507415771484;55981853;1116;659;Could not calculate this field;Could not calculate this field
150.65505981445312;259.61724853515625;55981853;1116;659;Could not calculate this field;Could not calculate this field
218.24136352539062;531.0352783203125;55981853;1116;659;Could not calculate this field;Could not calculate this field
338.3948059082031;649.0430908203125;55981853;1116;659;Could not calculate this field;Could not calculate this field
633.4143676757812;433.41058349609375;55981853;1116;659;Could not calculate this field;Could not calculate this field
741.7670288085938;408.7362365722656;55981853;1116;659;Could not calculate this field;Could not calculate this field
887.6676025390625;33.256752014160156;55981906;1116;659;Could not calculate this field;Could not calculate this field
866.211669921875;585.7479858398438;55982067;1116;659;Could not calculate this field;Could not calculate this field
216.09576416015625;339.00433349609375;55982095;1116;659;Could not calculate this field;Could not calculate this field
476.7857971191406;86.89667510986328;55982095;1116;659;Could not calculate this field;Could not calculate this field
596.939208984375;271.41802978515625;55982095;1116;659;Could not calculate this field;Could not calculate this field
796.479736328125;287.510009765625;55982105;1116;659;Could not calculate this field;Could not calculate this field
209.6589813232422;337.9315185546875;55982128;1116;659;Could not calculate this field;Could not calculate this field
606.5944213867188;205.97731018066406;55982324;1116;659;Could not calculate this field;Could not calculate this field
572.264892578125;307.8931579589844;55982324;1116;659;Could not calculate this field;Could not calculate this field
790.0850219726562;69.75432586669922;56022726;1116;659;Could not calculate this field;Could not calculate this field
339.85260009765625;401.61578369140625;56022726;1116;659;Could not calculate this field;Could not calculate this field
948.6176147460938;33.82027816772461;56022726;1116;659;Could not calculate this field;Could not calculate this field
498.3851623535156;545.3519897460938;56022807;1116;659;Could not calculate this field;Could not calculate this field
963.4140014648438;160.6463165283203;56022887;1116;659;Could not calculate this field;Could not calculate this field
428.6308288574219;162.7600860595703;56022887;1116;659;Could not calculate this field;Could not calculate this field
517.4090576171875;591.8548583984375;56022887;1116;659;Could not calculate this field;Could not calculate this field
785.8575439453125;422.75347900390625;56022918;1116;659;Could not calculate this field;Could not calculate this field
1045.8509521484375;564.3758544921875;56022918;1116;659;Could not calculate this field;Could not calculate this field
795.9512329101562;298.0927734375;56070796;1116;659;Could not calculate this field;Could not calculate this field
471.7099609375;629.3069458007812;56070860;1116;659;Could not calculate this field;Could not calculate this field
1106.24658203125;531.6859130859375;56070860;1116;659;Could not calculate this field;Could not calculate this field
787.2350463867188;420.1190185546875;56070933;1116;659;Could not calculate this field;Could not calculate this field
1062.665771484375;578.7532348632812;56070933;1116;659;Could not calculate this field;Could not calculate this field
579.7904052734375;374.79498291015625;56071294;1116;659;Could not calculate this field;Could not calculate this field
719.2489624023438;306.80889892578125;56071294;1116;659;Could not calculate this field;Could not calculate this field
1109.733154296875;437.5513916015625;56071991;1116;659;Could not calculate this field;Could not calculate this field
456.0208740234375;383.51116943359375;56072137;1116;659;Could not calculate this field;Could not calculate this field
937.153076171875;564.807373046875;56072266;1116;659;Could not calculate this field;Could not calculate this field
569.3309936523438;446.26751708984375;56072304;1116;659;Could not calculate this field;Could not calculate this field
246.83294677734375;233.5931854248047;56072611;1116;659;Could not calculate this field;Could not calculate this field
20.21271514892578;151.66123962402344;56072833;1116;659;Could not calculate this field;Could not calculate this field
503.088134765625;317.268310546875;56072871;1116;659;Could not calculate this field;Could not calculate this field
562.358154296875;617.1201171875;56072977;1116;658;Could not calculate this field;Could not calculate this field
382.8006286621094;648.4991455078125;56072977;1116;658;Could not calculate this field;Could not calculate this field
166.63424682617188;416.6432189941406;56072977;1116;658;Could not calculate this field;Could not calculate this field
707.0501708984375;116.799560546875;56073040;1116;658;Could not calculate this field;Could not calculate this field
658.23583984375;282.4036865234375;56073113;1116;659;Could not calculate this field;Could not calculate this field
1101.016845703125;153.4044647216797;56073113;1116;659;Could not calculate this field;Could not calculate this field
489.14227294921875;603.158447265625;56073488;1116;659;Could not calculate this field;Could not calculate this field
40.473731994628906;650.4966430664062;56073488;1116;659;Could not calculate this field;Could not calculate this field
110.32499694824219;127.52168273925781;56073488;1116;659;Could not calculate this field;Could not calculate this field
191.04949951171875;547.375;56073565;1116;659;Could not calculate this field;Could not calculate this field
524.0069580078125;599.6719970703125;56073565;1116;659;Could not calculate this field;Could not calculate this field
365.3727722167969;17.432327270507812;56073665;1116;659;Could not calculate this field;Could not calculate this field
116.09051513671875;636.2799072265625;56073665;1116;659;Could not calculate this field;Could not calculate this field
405.4671325683594;61.01313781738281;56073916;1116;659;Could not calculate this field;Could not calculate this field
1087.071044921875;366.078857421875;56074138;1116;659;Could not calculate this field;Could not calculate this field
729.7083740234375;169.0935516357422;56074375;1116;659;Could not calculate this field;Could not calculate this field
442.07501220703125;484.61865234375;56074375;1116;659;Could not calculate this field;Could not calculate this field
818.61328125;289.3765869140625;56074375;1116;659;Could not calculate this field;Could not calculate this field
16.72624969482422;399.20025634765625;56074411;1116;659;Could not calculate this field;Could not calculate this field
267.7517395019531;275.43072509765625;56074902;1116;659;Could not calculate this field;Could not calculate this field
843.0184936523438;329.470947265625;56075181;1116;659;Could not calculate this field;Could not calculate this field
252.06265258789062;454.98370361328125;56075181;1116;659;Could not calculate this field;Could not calculate this field
456.0208740234375;118.53981018066406;56075319;1116;659;Could not calculate this field;Could not calculate this field
591.9930419921875;108.08042907714844;56075319;1116;659;Could not calculate this field;Could not calculate this field
478.68292236328125;339.93035888671875;56075319;1116;659;Could not calculate this field;Could not calculate this field
1043.071044921875;623.098876953125;56075388;1116;659;Could not calculate this field;Could not calculate this field
382.8050842285156;245.79579162597656;56075777;1116;659;Could not calculate this field;Could not calculate this field
393.2644958496094;482.87542724609375;56075777;1116;659;Could not calculate this field;Could not calculate this field
858.7075805664062;549.1182861328125;56075858;1116;659;Could not calculate this field;Could not calculate this field
234.63034057617188;209.1879119873047;56076074;1116;659;Could not calculate this field;Could not calculate this field
834.5882568359375;414.9516906738281;56076285;1160;659;Could not calculate this field;Could not calculate this field
834.5882568359375;414.9516906738281;56076293;1160;659;Could not calculate this field;Could not calculate this field
504.83135986328125;190.01235961914062;56076353;1116;659;Could not calculate this field;Could not calculate this field
395.0077209472656;414.88934326171875;56076353;1116;659;Could not calculate this field;Could not calculate this field
69.02322387695312;334.70068359375;56076395;1116;659;Could not calculate this field;Could not calculate this field
605.9388427734375;200.47174072265625;56076575;1116;659;Could not calculate this field;Could not calculate this field
576.3038940429688;299.83599853515625;56076575;1116;659;Could not calculate this field;Could not calculate this field
569.3309936523438;256.25518798828125;56076875;1116;659;Could not calculate this field;Could not calculate this field
966.7880249023438;411.40289306640625;56076875;1116;659;Could not calculate this field;Could not calculate this field
902.2883911132812;144.68832397460938;56076875;1116;659;Could not calculate this field;Could not calculate this field
1005.1505737304688;528.2130126953125;56076979;1116;658;Could not calculate this field;Could not calculate this field
806.4169921875;67.98780822753906;56076979;1116;658;Could not calculate this field;Could not calculate this field
630.345947265625;31.378982543945312;56076979;1116;658;Could not calculate this field;Could not calculate this field
426.382568359375;55.78486633300781;56076979;1116;658;Could not calculate this field;Could not calculate this field
738.424560546875;444.5242919921875;56077097;1116;659;Could not calculate this field;Could not calculate this field
39.388275146484375;367.82208251953125;56077180;1116;659;Could not calculate this field;Could not calculate this field
766.3162841796875;315.5251159667969;56077369;1116;659;Could not calculate this field;Could not calculate this field
133.52284240722656;47.06727600097656;56077369;1116;659;Could not calculate this field;Could not calculate this field
591.9930419921875;437.5513916015625;56077621;1116;659;Could not calculate this field;Could not calculate this field
782.00537109375;521.2265625;56077621;1116;659;Could not calculate this field;Could not calculate this field
1109.733154296875;158.6341552734375;56077621;1116;659;Could not calculate this field;Could not calculate this field
578.0471801757812;631.0502319335938;56077621;1116;659;Could not calculate this field;Could not calculate this field
1034.774169921875;465.443115234375;56077745;1116;659;Could not calculate this field;Could not calculate this field
431.6156005859375;496.8212890625;56077745;1116;659;Could not calculate this field;Could not calculate this field
829.0726318359375;603.1585083007812;56077865;1116;659;Could not calculate this field;Could not calculate this field
1015.4932861328125;295.8876037597656;56077865;1116;659;Could not calculate this field;Could not calculate this field
1001.6526489257812;200.47174072265625;56077905;1116;659;Could not calculate this field;Could not calculate this field
1027.813232421875;496.8340148925781;56077930;1116;658;Could not calculate this field;Could not calculate this field
661.7249755859375;12.20294189453125;56077930;1116;658;Could not calculate this field;Could not calculate this field
131.77960205078125;130.74246215820312;56078079;1116;659;Could not calculate this field;Could not calculate this field
384.54833984375;15.689102172851562;56078079;1116;659;Could not calculate this field;Could not calculate this field
914.4910278320312;48.810516357421875;56078145;1116;659;Could not calculate this field;Could not calculate this field
1003.3959350585938;95.8778076171875;56078145;1116;659;Could not calculate this field;Could not calculate this field
992.9364624023438;235.33639526367188;56078173;1116;659;Could not calculate this field;Could not calculate this field
837.788818359375;448.01080322265625;56078173;1116;659;Could not calculate this field;Could not calculate this field
457.76409912109375;332.95745849609375;56078385;1116;659;Could not calculate this field;Could not calculate this field
1038.260498046875;477.645751953125;56078480;1116;659;Could not calculate this field;Could not calculate this field
914.4910278320312;472.416015625;56078480;1116;659;Could not calculate this field;Could not calculate this field
234.63034057617188;357.3626708984375;56078480;1116;659;Could not calculate this field;Could not calculate this field
517.0339965820312;48.810516357421875;56078480;1116;659;Could not calculate this field;Could not calculate this field
623.3712158203125;130.74246215820312;56078480;1116;659;Could not calculate this field;Could not calculate this field
832.55908203125;263.2281188964844;56078480;1116;659;Could not calculate this field;Could not calculate this field
823.8429565429688;48.810516357421875;56078480;1116;659;Could not calculate this field;Could not calculate this field
921.4639892578125;556.0911865234375;56078562;1116;659;Could not calculate this field;Could not calculate this field
829.0726318359375;188.26913452148438;56078562;1116;659;Could not calculate this field;Could not calculate this field
900.545166015625;298.0927734375;56078809;1116;659;Could not calculate this field;Could not calculate this field
281.6976013183594;510.76715087890625;56078840;1116;659;Could not calculate this field;Could not calculate this field
170.13072204589844;374.79498291015625;56078877;1116;659;Could not calculate this field;Could not calculate this field
257.2923583984375;414.88934326171875;56078877;1116;659;Could not calculate this field;Could not calculate this field
206.73861694335938;564.807373046875;56078877;1116;659;Could not calculate this field;Could not calculate this field
628.6008911132812;632.79345703125;56078905;1116;659;Could not calculate this field;Could not calculate this field
1024.314697265625;264.9713439941406;56078974;1116;659;Could not calculate this field;Could not calculate this field
1038.260498046875;31.378189086914062;56078974;1116;659;Could not calculate this field;Could not calculate this field
743.6542358398438;169.09356689453125;56078974;1116;659;Could not calculate this field;Could not calculate this field
339.2242736816406;128.99920654296875;56078974;1116;659;Could not calculate this field;Could not calculate this field
551.898681640625;561.3209228515625;56079018;1116;659;Could not calculate this field;Could not calculate this field
49.84767150878906;312.03863525390625;56079018;1116;659;Could not calculate this field;Could not calculate this field
590.249755859375;109.82366943359375;56079141;1116;659;Could not calculate this field;Could not calculate this field
340.967529296875;566.5505981445312;56079141;1116;659;Could not calculate this field;Could not calculate this field
830.9721069335938;358.3738708496094;56079299;1116;658;Could not calculate this field;Could not calculate this field
583.1821899414062;208.88076782226562;56079299;1116;658;Could not calculate this field;Could not calculate this field
1013.2363891601562;215.02694702148438;56079350;1116;659;Could not calculate this field;Could not calculate this field
183.84671020507812;376.80914306640625;56079350;1116;659;Could not calculate this field;Could not calculate this field
396.8257751464844;368.61761474609375;56079350;1116;659;Could not calculate this field;Could not calculate this field
620.0442504882812;350.1867370605469;56079350;1116;659;Could not calculate this field;Could not calculate this field
75.99615478515625;80.18869018554688;56079365;1116;659;Could not calculate this field;Could not calculate this field
449.04791259765625;275.4307556152344;56079365;1116;659;Could not calculate this field;Could not calculate this field
560.6148071289062;343.41680908203125;56079365;1116;659;Could not calculate this field;Could not calculate this field
687.8707885742188;343.41680908203125;56079365;1116;659;Could not calculate this field;Could not calculate this field
712.2760620117188;439.29461669921875;56079365;1116;659;Could not calculate this field;Could not calculate this field
869.1669921875;491.59161376953125;56079365;1116;659;Could not calculate this field;Could not calculate this field
942.3827514648438;292.8630676269531;56079365;1116;659;Could not calculate this field;Could not calculate this field
1035.7630615234375;118.77678680419922;56079417;1116;659;Could not calculate this field;Could not calculate this field
855.5499267578125;284.65472412109375;56079417;1116;659;Could not calculate this field;Could not calculate this field
697.863525390625;462.8199157714844;56079417;1116;659;Could not calculate this field;Could not calculate this field
243.235107421875;501.72955322265625;56079417;1116;659;Could not calculate this field;Could not calculate this field
71.21354675292969;360.4261169433594;56079417;1116;659;Could not calculate this field;Could not calculate this field
110.12318420410156;296.9419860839844;56079417;1116;659;Could not calculate this field;Could not calculate this field
869.1669921875;585.7261352539062;56079488;1116;659;Could not calculate this field;Could not calculate this field
11.825151443481445;401.3836364746094;56079526;1116;659;Could not calculate this field;Could not calculate this field
633.83056640625;224.87701416015625;56079564;1116;659;Could not calculate this field;Could not calculate this field
470.54931640625;632.7935791015625;56079590;1116;659;Could not calculate this field;Could not calculate this field
1101.2950439453125;530.3997802734375;56079590;1116;659;Could not calculate this field;Could not calculate this field
827.3294067382812;582.2396850585938;56079607;1116;659;Could not calculate this field;Could not calculate this field
297.3866882324219;491.59161376953125;56079607;1116;659;Could not calculate this field;Could not calculate this field
227.65740966796875;256.25518798828125;56079636;1116;659;Could not calculate this field;Could not calculate this field
945.656494140625;391.1442565917969;56079701;1116;659;Could not calculate this field;Could not calculate this field
1082.857666015625;354.2781677246094;56079719;1116;658;Could not calculate this field;Could not calculate this field
478.7408142089844;505.8252868652344;56079743;1116;659;Could not calculate this field;Could not calculate this field
364.0597839355469;169.9736785888672;56079743;1116;659;Could not calculate this field;Could not calculate this field
290.33624267578125;165.8779296875;56079743;1116;659;Could not calculate this field;Could not calculate this field
859.6456909179688;10.239378929138184;56079833;1116;659;Could not calculate this field;Could not calculate this field
128.55406188964844;376.80914306640625;56079985;1116;659;Could not calculate this field;Could not calculate this field
179.75096130371094;241.6493377685547;56079985;1116;659;Could not calculate this field;Could not calculate this field
427.5439147949219;71.67565155029297;56079985;1116;659;Could not calculate this field;Could not calculate this field
63.02204513549805;331.755859375;56080008;1116;659;Could not calculate this field;Could not calculate this field
507.41107177734375;303.0856018066406;56080029;1116;659;Could not calculate this field;Could not calculate this field
930.1801147460938;376.53826904296875;56080042;1116;659;Could not calculate this field;Could not calculate this field
1027.80126953125;339.93035888671875;56080042;1116;659;Could not calculate this field;Could not calculate this field
795.9512329101562;10.459396362304688;56080042;1116;659;Could not calculate this field;Could not calculate this field
796.1615600585938;298.9898376464844;56080047;1116;659;Could not calculate this field;Could not calculate this field
818.6881713867188;188.40457153320312;56080068;1116;659;Could not calculate this field;Could not calculate this field
902.6510620117188;391.1442565917969;56080068;1116;659;Could not calculate this field;Could not calculate this field
638.47509765625;358.37823486328125;56080068;1116;659;Could not calculate this field;Could not calculate this field
460.3099365234375;313.3249816894531;56080068;1116;659;Could not calculate this field;Could not calculate this field
593.421875;120.82466888427734;56080090;1116;659;Could not calculate this field;Could not calculate this field
339.4852600097656;571.3572998046875;56080090;1116;659;Could not calculate this field;Could not calculate this field
276.4678955078125;549.1182861328125;56080103;1116;659;Could not calculate this field;Could not calculate this field
143.98223876953125;244.05258178710938;56080103;1116;659;Could not calculate this field;Could not calculate this field
417.66973876953125;167.350341796875;56080103;1116;659;Could not calculate this field;Could not calculate this field
524.0069580078125;264.9713439941406;56080103;1116;659;Could not calculate this field;Could not calculate this field
958.0718383789062;101.10748291015625;56080103;1116;659;Could not calculate this field;Could not calculate this field
849.4063110351562;331.755859375;56080130;1116;659;Could not calculate this field;Could not calculate this field
245.28297424316406;458.7241516113281;56080130;1116;659;Could not calculate this field;Could not calculate this field
341.53314208984375;118.77678680419922;56080171;1116;659;Could not calculate this field;Could not calculate this field
626.1878662109375;630.7457275390625;56080198;1116;659;Could not calculate this field;Could not calculate this field
765.4434204101562;409.57513427734375;56080233;1116;659;Could not calculate this field;Could not calculate this field
835.0711669921875;507.8731689453125;56080233;1116;659;Could not calculate this field;Could not calculate this field
667.1453857421875;385.0006408691406;56080233;1116;659;Could not calculate this field;Could not calculate this field
1019.0850219726562;324.24127197265625;56080257;1116;659;Could not calculate this field;Could not calculate this field
62.05029296875;41.83758544921875;56080257;1116;659;Could not calculate this field;Could not calculate this field
13.873027801513672;409.57513427734375;56080300;1116;659;Could not calculate this field;Could not calculate this field
63.028106689453125;75.77046966552734;56080374;1116;658;Could not calculate this field;Could not calculate this field
165.41583251953125;380.9048767089844;56080420;1116;659;Could not calculate this field;Could not calculate this field
253.4744873046875;425.9581604003906;56080420;1116;659;Could not calculate this field;Could not calculate this field
210.46910095214844;563.1658325195312;56080420;1116;659;Could not calculate this field;Could not calculate this field
747.1406860351562;434.06494140625;56080470;1116;659;Could not calculate this field;Could not calculate this field
220.70846557617188;260.0802001953125;56080472;1116;659;Could not calculate this field;Could not calculate this field
585.2300415039062;204.78506469726562;56080492;1116;658;Could not calculate this field;Could not calculate this field
837.1156616210938;352.2303161621094;56080492;1116;658;Could not calculate this field;Could not calculate this field
438.5885314941406;108.08041381835938;56080610;1116;659;Could not calculate this field;Could not calculate this field
499.6016845703125;20.918792724609375;56080669;1116;659;Could not calculate this field;Could not calculate this field
274.72467041015625;130.74246215820312;56080669;1116;659;Could not calculate this field;Could not calculate this field
34.15857696533203;613.6178588867188;56080669;1116;659;Could not calculate this field;Could not calculate this field
381.0618591308594;437.5513916015625;56080790;1116;659;Could not calculate this field;Could not calculate this field
325.2784118652344;594.4423217773438;56080817;1116;659;Could not calculate this field;Could not calculate this field
506.5745849609375;540.402099609375;56080817;1116;659;Could not calculate this field;Could not calculate this field
14.983016967773438;441.037841796875;56080817;1116;659;Could not calculate this field;Could not calculate this field
998.1661987304688;66.24284362792969;56080851;1116;659;Could not calculate this field;Could not calculate this field
881.36962890625;631.0502319335938;56080851;1116;659;Could not calculate this field;Could not calculate this field
602.452392578125;268.45782470703125;56080934;1116;659;Could not calculate this field;Could not calculate this field
462.9937744140625;76.70223999023438;56080934;1116;659;Could not calculate this field;Could not calculate this field
206.73861694335938;336.44390869140625;56080934;1116;659;Could not calculate this field;Could not calculate this field
741.9110107421875;448.01080322265625;56080968;1116;659;Could not calculate this field;Could not calculate this field
961.5582885742188;629.3069458007812;56081067;1116;659;Could not calculate this field;Could not calculate this field
361.8863220214844;29.634963989257812;56081120;1116;659;Could not calculate this field;Could not calculate this field
419.4129943847656;648.4825439453125;56081154;1116;659;Could not calculate this field;Could not calculate this field
541.4392700195312;460.21343994140625;56081184;1116;659;Could not calculate this field;Could not calculate this field
696.5869750976562;449.7540283203125;56081184;1116;659;Could not calculate this field;Could not calculate this field
571.07421875;254.511962890625;56081184;1116;659;Could not calculate this field;Could not calculate this field
1076.611572265625;392.22735595703125;56081218;1116;659;Could not calculate this field;Could not calculate this field
717.5057373046875;624.0772705078125;56081218;1116;659;Could not calculate this field;Could not calculate this field
405.4671325683594;632.79345703125;56081218;1116;659;Could not calculate this field;Could not calculate this field
464.737060546875;74.95901489257812;56081236;1116;659;Could not calculate this field;Could not calculate this field
513.5475463867188;294.6063232421875;56081335;1116;659;Could not calculate this field;Could not calculate this field
949.355712890625;26.14849853515625;56081508;1116;659;Could not calculate this field;Could not calculate this field
787.2350463867188;62.756378173828125;56081508;1116;659;Could not calculate this field;Could not calculate this field
346.19720458984375;395.71380615234375;56081508;1116;659;Could not calculate this field;Could not calculate this field
1104.50341796875;148.17477416992188;56081533;1116;659;Could not calculate this field;Could not calculate this field
1057.43603515625;406.1732177734375;56081645;1116;659;Could not calculate this field;Could not calculate this field
128.2931365966797;380.02471923828125;56081645;1116;659;Could not calculate this field;Could not calculate this field
21.955947875976562;369.5653076171875;56081645;1116;659;Could not calculate this field;Could not calculate this field
1076.611572265625;564.807373046875;56081761;1116;659;Could not calculate this field;Could not calculate this field
975.5042114257812;536.9156494140625;56081761;1116;659;Could not calculate this field;Could not calculate this field
848.2482299804688;549.1182861328125;56081761;1116;659;Could not calculate this field;Could not calculate this field
1020.8281860351562;346.9033203125;56081761;1116;659;Could not calculate this field;Could not calculate this field
907.5181274414062;111.56689453125;56082133;1116;659;Could not calculate this field;Could not calculate this field
518.7772216796875;418.3758544921875;56082133;1116;659;Could not calculate this field;Could not calculate this field
569.3309936523438;526.4562377929688;56082133;1116;659;Could not calculate this field;Could not calculate this field
987.7068481445312;566.5505981445312;56082133;1116;659;Could not calculate this field;Could not calculate this field
478.68292236328125;514.2536010742188;56082133;1116;659;Could not calculate this field;Could not calculate this field
9.753318786621094;115.0533447265625;56082225;1116;659;Could not calculate this field;Could not calculate this field
586.7633056640625;71.4725341796875;56082225;1116;659;Could not calculate this field;Could not calculate this field
844.76171875;397.45703125;56082305;1116;659;Could not calculate this field;Could not calculate this field
166.64425659179688;256.25518798828125;56082346;1116;659;Could not calculate this field;Could not calculate this field
42.87474060058594;135.97213745117188;56082483;1116;659;Could not calculate this field;Could not calculate this field
309.5893249511719;104.59396362304688;56082483;1116;659;Could not calculate this field;Could not calculate this field
103.88787841796875;357.3626708984375;56082483;1116;659;Could not calculate this field;Could not calculate this field
227.65740966796875;273.6875305175781;56082483;1116;659;Could not calculate this field;Could not calculate this field
564.101318359375;266.714599609375;56082483;1116;659;Could not calculate this field;Could not calculate this field
656.4926147460938;317.2683410644531;56082483;1116;659;Could not calculate this field;Could not calculate this field
659.9790649414062;177.80972290039062;56082483;1116;659;Could not calculate this field;Could not calculate this field
1013.8552856445312;442.78106689453125;56082576;1116;659;Could not calculate this field;Could not calculate this field
1026.057861328125;66.24284362792969;56082734;1116;659;Could not calculate this field;Could not calculate this field
337.4810485839844;113.31011962890625;56082788;1116;659;Could not calculate this field;Could not calculate this field
69.01073455810547;74.96090698242188;56082881;1116;658;Could not calculate this field;Could not calculate this field
210.22506713867188;336.44390869140625;56082951;1116;659;Could not calculate this field;Could not calculate this field
961.5582885742188;158.6341552734375;56083065;1116;659;Could not calculate this field;Could not calculate this field
583.27685546875;317.2683410644531;56083065;1116;659;Could not calculate this field;Could not calculate this field
517.0339965820312;577.010009765625;56083065;1116;659;Could not calculate this field;Could not calculate this field
429.87237548828125;153.40447998046875;56083065;1116;659;Could not calculate this field;Could not calculate this field
138.75253295898438;13.94586181640625;56083065;1116;659;Could not calculate this field;Could not calculate this field
816.8699951171875;184.78265380859375;56083204;1116;659;Could not calculate this field;Could not calculate this field
475.1964111328125;306.8089294433594;56083204;1116;659;Could not calculate this field;Could not calculate this field
630.3441162109375;343.41680908203125;56083204;1116;659;Could not calculate this field;Could not calculate this field
902.2883911132812;392.22735595703125;56083204;1116;659;Could not calculate this field;Could not calculate this field
593.7362670898438;332.95745849609375;56083242;1116;659;Could not calculate this field;Could not calculate this field
333.9945983886719;355.61944580078125;56083329;1116;659;Could not calculate this field;Could not calculate this field
576.3038940429688;491.59161376953125;56083409;1116;659;Could not calculate this field;Could not calculate this field
471.7099609375;313.7818603515625;56083409;1116;659;Could not calculate this field;Could not calculate this field
264.2652893066406;268.45782470703125;56083533;1116;659;Could not calculate this field;Could not calculate this field
679.1546630859375;214.4176025390625;56083706;1116;659;Could not calculate this field;Could not calculate this field
998.1661987304688;101.10748291015625;56083706;1116;659;Could not calculate this field;Could not calculate this field
1076.625;350.3987121582031;56083733;1116;658;Could not calculate this field;Could not calculate this field
856.96435546875;336.44390869140625;56083766;1116;659;Could not calculate this field;Could not calculate this field
476.93963623046875;498.56451416015625;56084220;1116;659;Could not calculate this field;Could not calculate this field
363.6295471191406;172.58001708984375;56084220;1116;659;Could not calculate this field;Could not calculate this field
290.41375732421875;163.86386108398438;56084220;1116;659;Could not calculate this field;Could not calculate this field
626.857666015625;148.17477416992188;56084387;1116;659;Could not calculate this field;Could not calculate this field
851.7346801757812;277.1739807128906;56084482;1116;659;Could not calculate this field;Could not calculate this field
1033.03076171875;106.33718872070312;56084482;1116;659;Could not calculate this field;Could not calculate this field
651.262939453125;312.03863525390625;56084482;1116;659;Could not calculate this field;Could not calculate this field
572.8174438476562;285.89013671875;56084482;1116;659;Could not calculate this field;Could not calculate this field
98.65818786621094;292.8630676269531;56084482;1116;659;Could not calculate this field;Could not calculate this field
74.2529296875;359.10589599609375;56084482;1116;659;Could not calculate this field;Could not calculate this field
689.614013671875;458.47015380859375;56084482;1116;659;Could not calculate this field;Could not calculate this field
243.34649658203125;495.07806396484375;56084482;1116;659;Could not calculate this field;Could not calculate this field
161.41455078125;40.09434509277344;56084622;1116;659;Could not calculate this field;Could not calculate this field
161.41455078125;40.09434509277344;56084627;1116;659;Could not calculate this field;Could not calculate this field
539.696044921875;113.31011962890625;56084768;1116;659;Could not calculate this field;Could not calculate this field
703.5598754882812;292.8630676269531;56084768;1116;659;Could not calculate this field;Could not calculate this field
687.8707885742188;564.807373046875;56084768;1116;659;Could not calculate this field;Could not calculate this field
743.6542358398438;420.11907958984375;56084768;1116;659;Could not calculate this field;Could not calculate this field
497.85845947265625;500.3077392578125;56084768;1116;659;Could not calculate this field;Could not calculate this field
750.627197265625;402.68670654296875;56084923;1116;659;Could not calculate this field;Could not calculate this field
633.83056640625;425.3487548828125;56084923;1116;659;Could not calculate this field;Could not calculate this field
220.68447875976562;531.6859741210938;56084923;1116;659;Could not calculate this field;Could not calculate this field
337.4810485839844;653.7122192382812;56084923;1116;659;Could not calculate this field;Could not calculate this field
147.4687042236328;264.9713439941406;56084923;1116;659;Could not calculate this field;Could not calculate this field
11.496551513671875;151.66122436523438;56084923;1116;659;Could not calculate this field;Could not calculate this field
302.61639404296875;83.6751708984375;56084923;1116;659;Could not calculate this field;Could not calculate this field
283.4408264160156;509.02392578125;56085039;1116;659;Could not calculate this field;Could not calculate this field
140.4957733154297;542.1453247070312;56085039;1116;659;Could not calculate this field;Could not calculate this field
27.185646057128906;529.9426879882812;56085039;1116;659;Could not calculate this field;Could not calculate this field
605.9400634765625;109.82644653320312;56085298;1116;658;Could not calculate this field;Could not calculate this field
490.8838195800781;141.2054443359375;56085298;1116;658;Could not calculate this field;Could not calculate this field
656.4951171875;627.579833984375;56085298;1116;658;Could not calculate this field;Could not calculate this field
424.6426696777344;54.04020690917969;56085361;1116;659;Could not calculate this field;Could not calculate this field
171.8739471435547;226.6202392578125;56085361;1116;659;Could not calculate this field;Could not calculate this field
123.06344604492188;371.30853271484375;56085361;1116;659;Could not calculate this field;Could not calculate this field
832.5661010742188;357.3717956542969;56085600;1116;658;Could not calculate this field;Could not calculate this field
583.2774658203125;205.70669555664062;56085600;1116;658;Could not calculate this field;Could not calculate this field
874.3966674804688;13.94586181640625;56085726;1116;659;Could not calculate this field;Could not calculate this field
1012.1121215820312;209.18792724609375;56085852;1116;659;Could not calculate this field;Could not calculate this field
623.3712158203125;348.64654541015625;56085852;1116;659;Could not calculate this field;Could not calculate this field
403.723876953125;364.33563232421875;56085852;1116;659;Could not calculate this field;Could not calculate this field
187.56304931640625;380.02471923828125;56085852;1116;659;Could not calculate this field;Could not calculate this field
1046.976806640625;503.79425048828125;56085896;1116;659;Could not calculate this field;Could not calculate this field
1052.206298828125;59.26991271972656;56085896;1116;659;Could not calculate this field;Could not calculate this field
980.7338256835938;92.39132690429688;56085896;1116;659;Could not calculate this field;Could not calculate this field
905.77490234375;88.90487670898438;56085896;1116;659;Could not calculate this field;Could not calculate this field
877.8831787109375;34.864654541015625;56085974;1116;659;Could not calculate this field;Could not calculate this field
837.788818359375;502.05096435546875;56086392;1116;659;Could not calculate this field;Could not calculate this field
768.0595092773438;411.40289306640625;56086392;1116;659;Could not calculate this field;Could not calculate this field
659.9790649414062;381.7679443359375;56086392;1116;659;Could not calculate this field;Could not calculate this field
628.6008911132812;22.662033081054688;56086392;1116;659;Could not calculate this field;Could not calculate this field
647.7764282226562;514.2536010742188;56086392;1116;659;Could not calculate this field;Could not calculate this field
248.57620239257812;631.0502319335938;56086444;1116;659;Could not calculate this field;Could not calculate this field
16.72624969482422;409.65966796875;56086544;1116;659;Could not calculate this field;Could not calculate this field
921.4639892578125;167.350341796875;56086588;1116;659;Could not calculate this field;Could not calculate this field
1015.5985717773438;421.8623046875;56086588;1116;659;Could not calculate this field;Could not calculate this field
335.7378234863281;254.511962890625;56086663;1116;659;Could not calculate this field;Could not calculate this field
145.7254638671875;556.0911865234375;56086663;1116;659;Could not calculate this field;Could not calculate this field
954.5853881835938;191.75558471679688;56086746;1116;659;Could not calculate this field;Could not calculate this field
694.84375;237.07965087890625;56086814;1116;659;Could not calculate this field;Could not calculate this field
593.7362670898438;441.037841796875;56117380;1116;659;Could not calculate this field;Could not calculate this field
1107.98974609375;156.8909454345703;56117380;1116;659;Could not calculate this field;Could not calculate this field
579.7904052734375;627.563720703125;56117380;1116;659;Could not calculate this field;Could not calculate this field
841.8363037109375;418.5757141113281;56117474;1160;659;Could not calculate this field;Could not calculate this field
909.2613525390625;142.94508361816406;56117538;1116;659;Could not calculate this field;Could not calculate this field
571.07421875;256.25518798828125;56117538;1116;659;Could not calculate this field;Could not calculate this field
973.7609252929688;414.88934326171875;56117538;1116;659;Could not calculate this field;Could not calculate this field
361.0656433105469;192.9420166015625;56196336;1116;659;Could not calculate this field;Could not calculate this field
286.14715576171875;167.9691925048828;56196336;1116;659;Could not calculate this field;Could not calculate this field
487.2125549316406;502.2762451171875;56196336;1116;659;Could not calculate this field;Could not calculate this field
1017.7078857421875;296.89654541015625;56196614;1116;658;Could not calculate this field;Could not calculate this field
844.7888793945312;364.45965576171875;56196614;1116;658;Could not calculate this field;Could not calculate this field
584.9227905273438;204.42916870117188;56196614;1116;658;Could not calculate this field;Could not calculate this field
799.9795532226562;431.7767333984375;56197361;1116;659;Could not calculate this field;Could not calculate this field
801.6707153320312;434.59539794921875;56197361;1116;659;Could not calculate this field;Could not calculate this field
1089.089599609375;592.9056396484375;56197361;1116;659;Could not calculate this field;Could not calculate this field
1058.58740234375;576.5805053710938;56197361;1116;659;Could not calculate this field;Could not calculate this field
1058.58740234375;576.5805053710938;56197361;1116;659;Could not calculate this field;Could not calculate this field
1042.2623291015625;563.2626953125;56197361;1116;659;Could not calculate this field;Could not calculate this field
1041.8326416015625;563.6922607421875;56197361;1116;659;Could not calculate this field;Could not calculate this field
279.78277587890625;513.9165649414062;56198296;1116;659;Could not calculate this field;Could not calculate this field
143.89974975585938;547.0162963867188;56198296;1116;659;Could not calculate this field;Could not calculate this field
28.92180824279785;536.563720703125;56198296;1116;659;Could not calculate this field;Could not calculate this field
1081.1441650390625;-135.88302612304688;56204020;1116;659;Could not calculate this field;Could not calculate this field
1105.533447265625;-158.5301971435547;56204020;1116;659;Could not calculate this field;Could not calculate this field
8.016728401184082;142.85137939453125;56204020;1116;659;Could not calculate this field;Could not calculate this field
147.38392639160156;261.3135070800781;56204020;1116;659;Could not calculate this field;Could not calculate this field
309.3983154296875;87.10449981689453;56204020;1116;659;Could not calculate this field;Could not calculate this field
215.325439453125;529.5953979492188;56204020;1116;659;Could not calculate this field;Could not calculate this field
332.04547119140625;656.7679443359375;56204020;1116;659;Could not calculate this field;Could not calculate this field
636.9112548828125;425.0699768066406;56204020;1116;659;Could not calculate this field;Could not calculate this field
1021.9181518554688;501.7273864746094;56204126;1116;658;Could not calculate this field;Could not calculate this field
737.9524536132812;437.26458740234375;56204211;1116;659;Could not calculate this field;Could not calculate this field
266.796875;276;56211063;1116;659;Could not calculate this field;Could not calculate this field
13.796875;154;56211559;1116;659;Could not calculate this field;Could not calculate this field
562.3400268554688;268.0985107421875;56217373;1116;659;Could not calculate this field;Could not calculate this field
972.9412841796875;400.9400939941406;56217373;1116;659;Could not calculate this field;Could not calculate this field
907.7281494140625;137.6721954345703;56217373;1116;659;Could not calculate this field;Could not calculate this field
506.796875;318;56222547;1116;659;Could not calculate this field;Could not calculate this field
1017.796875;173;56222547;1116;659;Could not calculate this field;Could not calculate this field
985.796875;260;56222547;1116;659;Could not calculate this field;Could not calculate this field
1055.796875;308;56222547;1116;659;Could not calculate this field;Could not calculate this field
1102.796875;342;56222547;1116;659;Could not calculate this field;Could not calculate this field
897.796875;251;56222547;1116;659;Could not calculate this field;Could not calculate this field
938.796875;228;56222547;1116;659;Could not calculate this field;Could not calculate this field
686.796875;158;56222547;1116;659;Could not calculate this field;Could not calculate this field
692.796875;288;56222547;1116;659;Could not calculate this field;Could not calculate this field
751.796875;337;56222547;1116;659;Could not calculate this field;Could not calculate this field
792.796875;370;56222547;1116;659;Could not calculate this field;Could not calculate this field
199.796875;626;56222547;1116;659;Could not calculate this field;Could not calculate this field
141.796875;614;56222547;1116;659;Could not calculate this field;Could not calculate this field
558.796875;643;56222547;1116;659;Could not calculate this field;Could not calculate this field
482.796875;601;56222547;1116;659;Could not calculate this field;Could not calculate this field
433.796875;641;56222547;1116;659;Could not calculate this field;Could not calculate this field
453.796875;556;56222547;1116;659;Could not calculate this field;Could not calculate this field
522.796875;419;56222547;1116;659;Could not calculate this field;Could not calculate this field
746.0835571289062;383.1920166015625;56222786;1116;659;Could not calculate this field;Could not calculate this field
744.9010620117188;447.2619323730469;56222786;1116;659;Could not calculate this field;Could not calculate this field
649.4912719726562;228.9373779296875;56222786;1116;659;Could not calculate this field;Could not calculate this field
617.9835205078125;423.1484680175781;56222786;1116;659;Could not calculate this field;Could not calculate this field
348.2811584472656;430.3143005371094;56222786;1116;659;Could not calculate this field;Could not calculate this field
496.670166015625;252.16787719726562;56222786;1116;659;Could not calculate this field;Could not calculate this field
589.1004028320312;92.42328643798828;56222786;1116;659;Could not calculate this field;Could not calculate this field
967.3477783203125;230.1025390625;56222786;1116;659;Could not calculate this field;Could not calculate this field
1078.5867919921875;450.10986328125;56222786;1116;659;Could not calculate this field;Could not calculate this field
857.9899291992188;554.4573974609375;56227774;1116;659;Could not calculate this field;Could not calculate this field
396;419;56227818;1116;659;Could not calculate this field;Could not calculate this field
499;199;56227818;1116;659;Could not calculate this field;Could not calculate this field
863.796875;317;56235595;1116;659;Could not calculate this field;Could not calculate this field
983.796875;349;56235595;1116;659;Could not calculate this field;Could not calculate this field
971.796875;417;56235595;1116;659;Could not calculate this field;Could not calculate this field
847.796875;342;56235595;1116;659;Could not calculate this field;Could not calculate this field
540.796875;377;56235595;1116;659;Could not calculate this field;Could not calculate this field
561.796875;348;56235595;1116;659;Could not calculate this field;Could not calculate this field
552.796875;316;56235595;1116;659;Could not calculate this field;Could not calculate this field
444.796875;446;56235595;1116;659;Could not calculate this field;Could not calculate this field
186.796875;529;56235595;1116;659;Could not calculate this field;Could not calculate this field
479.796875;448;56235715;1116;659;Could not calculate this field;Could not calculate this field
389.796875;475;56235715;1116;659;Could not calculate this field;Could not calculate this field
553.796875;433;56235715;1116;659;Could not calculate this field;Could not calculate this field
91.796875;166;56235715;1116;659;Could not calculate this field;Could not calculate this field
427.796875;509;56235715;1116;659;Could not calculate this field;Could not calculate this field
894.796875;471;56235715;1116;659;Could not calculate this field;Could not calculate this field
683.796875;208;56235715;1116;659;Could not calculate this field;Could not calculate this field
989.796875;563;56235763;1116;659;Could not calculate this field;Could not calculate this field
1014.796875;624;56235763;1116;659;Could not calculate this field;Could not calculate this field
291.796875;639;56235763;1116;659;Could not calculate this field;Could not calculate this field
30.796875;425;56235763;1116;659;Could not calculate this field;Could not calculate this field
56.796875;356;56235763;1116;659;Could not calculate this field;Could not calculate this field
11.796875;500;56235763;1116;659;Could not calculate this field;Could not calculate this field
20.796875;268;56235763;1116;659;Could not calculate this field;Could not calculate this field
9.796875;223;56235763;1116;659;Could not calculate this field;Could not calculate this field
330.796875;226;56235763;1116;659;Could not calculate this field;Could not calculate this field
690.796875;54;56235763;1116;659;Could not calculate this field;Could not calculate this field
892.796875;16;56235763;1116;659;Could not calculate this field;Could not calculate this field
1054.796875;493;56235822;1116;659;Could not calculate this field;Could not calculate this field
898.796875;604;56235822;1116;659;Could not calculate this field;Could not calculate this field
1025.796875;457;56235822;1116;659;Could not calculate this field;Could not calculate this field
440.796875;202;56235822;1116;659;Could not calculate this field;Could not calculate this field
456.796875;364;56235822;1116;659;Could not calculate this field;Could not calculate this field
285.796875;55;56235822;1116;659;Could not calculate this field;Could not calculate this field
710.3092041015625;117.85282897949219;56236740;1116;658;Could not calculate this field;Could not calculate this field
382.33343505859375;473.5235290527344;56237256;1116;659;Could not calculate this field;Could not calculate this field
324.95294189453125;7.63491153717041;56237282;1116;659;Could not calculate this field;Could not calculate this field
535.2929077148438;132.41627502441406;56237412;1116;658;Could not calculate this field;Could not calculate this field
377.0318603515625;15.254627227783203;56237412;1116;658;Could not calculate this field;Could not calculate this field
1016.9015502929688;484.87066650390625;56237412;1116;658;Could not calculate this field;Could not calculate this field
1105.403076171875;438.511962890625;56237628;1116;659;Could not calculate this field;Could not calculate this field
501.48992919921875;319.5308532714844;56237713;1116;659;Could not calculate this field;Could not calculate this field
325.2533264160156;12.207511901855469;56237758;1116;659;Could not calculate this field;Could not calculate this field
81.42693328857422;163.11660766601562;56237758;1116;659;Could not calculate this field;Could not calculate this field
80.36544036865234;251.92811584472656;56237758;1116;659;Could not calculate this field;Could not calculate this field
36.13660430908203;176.91600036621094;56237758;1116;659;Could not calculate this field;Could not calculate this field
964.9066162109375;85.58464050292969;56237901;1116;659;Could not calculate this field;Could not calculate this field
978.58349609375;475.664794921875;56237901;1116;659;Could not calculate this field;Could not calculate this field
917.0702514648438;175.72369384765625;56239982;1116;659;Could not calculate this field;Could not calculate this field
436.14227294921875;326.0137023925781;56239982;1116;659;Could not calculate this field;Could not calculate this field
507.81903076171875;346.8230895996094;56239982;1116;659;Could not calculate this field;Could not calculate this field
341.3439636230469;210.406005859375;56239982;1116;659;Could not calculate this field;Could not calculate this field
582.2925415039062;411.5287780761719;56240398;1116;659;Could not calculate this field;Could not calculate this field
364.9500427246094;464.7083435058594;56240398;1116;659;Could not calculate this field;Could not calculate this field
1090.9664306640625;515.5757446289062;56240398;1116;659;Could not calculate this field;Could not calculate this field
536.0493774414062;161.816162109375;56240398;1116;659;Could not calculate this field;Could not calculate this field
476.796875;627;56264851;1116;659;Could not calculate this field;Could not calculate this field
276.796875;149;56264986;1116;659;Could not calculate this field;Could not calculate this field
501.796875;10;56264986;1116;659;Could not calculate this field;Could not calculate this field
28.796875;604;56264986;1116;659;Could not calculate this field;Could not calculate this field
1101.796875;153;56265034;1116;659;Could not calculate this field;Could not calculate this field
1047.796875;406;56265136;1116;659;Could not calculate this field;Could not calculate this field
22.796875;367;56265136;1116;659;Could not calculate this field;Could not calculate this field
1082.796875;363;56265437;1116;659;Could not calculate this field;Could not calculate this field
36.796875;134;56265518;1116;659;Could not calculate this field;Could not calculate this field
313.796875;108;56265518;1116;659;Could not calculate this field;Could not calculate this field
221.796875;274;56265518;1116;659;Could not calculate this field;Could not calculate this field
90.796875;364;56265518;1116;659;Could not calculate this field;Could not calculate this field
558.796875;265;56265518;1116;659;Could not calculate this field;Could not calculate this field
651.796875;167;56265518;1116;659;Could not calculate this field;Could not calculate this field
652.796875;318;56265518;1116;659;Could not calculate this field;Could not calculate this field
625.796875;624;56265654;1116;659;Could not calculate this field;Could not calculate this field
68.796875;336;56266047;1116;659;Could not calculate this field;Could not calculate this field
282.796875;502;56266088;1116;659;Could not calculate this field;Could not calculate this field
364.796875;32;56266156;1116;659;Could not calculate this field;Could not calculate this field
1026.796875;501;56266192;1116;658;Could not calculate this field;Could not calculate this field
236.796875;359;56266308;1116;659;Could not calculate this field;Could not calculate this field
513.796875;59;56266308;1116;659;Could not calculate this field;Could not calculate this field
619.796875;145;56266308;1116;659;Could not calculate this field;Could not calculate this field
820.796875;58;56266308;1116;659;Could not calculate this field;Could not calculate this field
821.796875;271;56266308;1116;659;Could not calculate this field;Could not calculate this field
912.796875;477;56266308;1116;659;Could not calculate this field;Could not calculate this field
1029.796875;483;56266308;1116;659;Could not calculate this field;Could not calculate this field
1006.796875;426;56266392;1116;659;Could not calculate this field;Could not calculate this field
916.796875;171;56266392;1116;659;Could not calculate this field;Could not calculate this field
625.796875;154;56266630;1116;659;Could not calculate this field;Could not calculate this field
856.796875;344;56266718;1116;659;Could not calculate this field;Could not calculate this field
201.796875;263;56266744;1116;659;Could not calculate this field;Could not calculate this field
1000.796875;209;56267588;1116;659;Could not calculate this field;Could not calculate this field
335.796875;118;56267844;1116;659;Could not calculate this field;Could not calculate this field
70.796875;333;56267878;1116;659;Could not calculate this field;Could not calculate this field
164.796875;389;56268047;1116;659;Could not calculate this field;Could not calculate this field
255.796875;430;56268047;1116;659;Could not calculate this field;Could not calculate this field
208.796875;575;56268047;1116;659;Could not calculate this field;Could not calculate this field
218.796875;260;56268081;1116;659;Could not calculate this field;Could not calculate this field
486.796875;607;56268217;1116;659;Could not calculate this field;Could not calculate this field
39.796875;654;56268217;1116;659;Could not calculate this field;Could not calculate this field
540.796875;125;56268288;1116;659;Could not calculate this field;Could not calculate this field
708.796875;299;56268288;1116;659;Could not calculate this field;Could not calculate this field
741.796875;420;56268288;1116;659;Could not calculate this field;Could not calculate this field
682.796875;565;56268288;1116;659;Could not calculate this field;Could not calculate this field
491.796875;499;56268288;1116;659;Could not calculate this field;Could not calculate this field
1110.796875;437;56268397;1116;659;Could not calculate this field;Could not calculate this field
162.796875;47;56268447;1116;659;Could not calculate this field;Could not calculate this field
583.796875;70;56268558;1116;659;Could not calculate this field;Could not calculate this field
3.796875;114;56268558;1116;659;Could not calculate this field;Could not calculate this field
431.796875;503;56268598;1116;659;Could not calculate this field;Could not calculate this field
1025.796875;473;56268598;1116;659;Could not calculate this field;Could not calculate this field
570.9155883789062;522.6085815429688;56277539;1116;659;Could not calculate this field;Could not calculate this field
727.9651489257812;444.52435302734375;56279523;1116;659;Could not calculate this field;Could not calculate this field
825.586181640625;594.4423217773438;56279583;1116;659;Could not calculate this field;Could not calculate this field
1010.3688354492188;298.0927734375;56279583;1116;659;Could not calculate this field;Could not calculate this field
309.5893249511719;80.18870544433594;56279625;1116;659;Could not calculate this field;Could not calculate this field
14.983016967773438;139.45860290527344;56279625;1116;659;Could not calculate this field;Could not calculate this field
150.95516967773438;266.714599609375;56279625;1116;659;Could not calculate this field;Could not calculate this field
217.197998046875;540.402099609375;56279625;1116;659;Could not calculate this field;Could not calculate this field
332.2513427734375;648.4825439453125;56279625;1116;659;Could not calculate this field;Could not calculate this field
647.7764282226562;430.5784912109375;56279625;1116;659;Could not calculate this field;Could not calculate this field
759.3433227539062;407.91644287109375;56279625;1116;659;Could not calculate this field;Could not calculate this field
949.355712890625;33.12141418457031;56279790;1116;659;Could not calculate this field;Could not calculate this field
788.978271484375;67.98606872558594;56279790;1116;659;Could not calculate this field;Could not calculate this field
342.71075439453125;402.686767578125;56279790;1116;659;Could not calculate this field;Could not calculate this field
782.0706176757812;202.0100555419922;56282207;1116;658;Could not calculate this field;Could not calculate this field
685.8798217773438;217.42184448242188;56282207;1116;658;Could not calculate this field;Could not calculate this field
37.751190185546875;134.33514404296875;56282876;1116;659;Could not calculate this field;Could not calculate this field
344.8029479980469;137.82437133789062;56292665;1116;659;Could not calculate this field;Could not calculate this field
744.3191528320312;167.48277282714844;56292665;1116;659;Could not calculate this field;Could not calculate this field
1035.6693115234375;38.3814697265625;56292665;1116;659;Could not calculate this field;Could not calculate this field
1039.1585693359375;275.64874267578125;56292665;1116;659;Could not calculate this field;Could not calculate this field
861.2081298828125;547.8082275390625;56296286;1116;659;Could not calculate this field;Could not calculate this field
606.4947509765625;205.86424255371094;56296334;1116;659;Could not calculate this field;Could not calculate this field
573.3471069335938;307.0517578125;56296334;1116;659;Could not calculate this field;Could not calculate this field
1020.4169311523438;-111.69491577148438;56301174;1116;659;Could not calculate this field;Could not calculate this field
881.915283203125;-134.03390502929688;56301174;1116;659;Could not calculate this field;Could not calculate this field
1056.1593017578125;-160.84068298339844;56301174;1116;659;Could not calculate this field;Could not calculate this field
801.4949340820312;0;56301174;1116;659;Could not calculate this field;Could not calculate this field
583.241943359375;324.6144714355469;56301174;1116;659;Could not calculate this field;Could not calculate this field
834.7487182617188;232.25784301757812;56306756;1116;659;Could not calculate this field;Could not calculate this field
1022.353271484375;-266.0668029785156;56306756;1116;659;Could not calculate this field;Could not calculate this field
805.9627075195312;-58.081356048583984;56306828;1116;659;Could not calculate this field;Could not calculate this field
913.1898193359375;138.50169372558594;56307133;1116;659;Could not calculate this field;Could not calculate this field
716.6068115234375;-317.21356201171875;56307133;1116;659;Could not calculate this field;Could not calculate this field
695.7653198242188;-154.4955596923828;56307352;1116;659;Could not calculate this field;Could not calculate this field
689.9027099609375;-213.1219940185547;56307352;1116;659;Could not calculate this field;Could not calculate this field
499.3667907714844;-207.2593536376953;56307352;1116;659;Could not calculate this field;Could not calculate this field
877.5072631835938;-175.0148162841797;56307352;1116;659;Could not calculate this field;Could not calculate this field
386.5108947753906;444.9596252441406;56307352;1116;659;Could not calculate this field;Could not calculate this field
376.84356689453125;244.3878936767578;56310950;1116;659;Could not calculate this field;Could not calculate this field
392.4262390136719;478.1276550292969;56310950;1116;659;Could not calculate this field;Could not calculate this field
507.99755859375;291.1358337402344;56310976;1116;659;Could not calculate this field;Could not calculate this field
623.56884765625;618.3715209960938;56311066;1116;659;Could not calculate this field;Could not calculate this field
545.6556396484375;556.0408935546875;56311186;1116;659;Could not calculate this field;Could not calculate this field
617.2255859375;207.28944396972656;56311232;1116;659;Could not calculate this field;Could not calculate this field
583.9111328125;77.73355102539062;56311299;1116;659;Could not calculate this field;Could not calculate this field
565.1339111328125;457.35076904296875;56311321;1116;659;Could not calculate this field;Could not calculate this field
946.6578369140625;403.4638366699219;56311337;1116;658;Could not calculate this field;Could not calculate this field
845.218017578125;426.7919006347656;56311346;1160;659;Could not calculate this field;Could not calculate this field
839.3214111328125;122.1527099609375;56311369;1116;659;Could not calculate this field;Could not calculate this field
239.66262817382812;421.9820861816406;56311420;1116;659;Could not calculate this field;Could not calculate this field
998.4901123046875;499.71563720703125;56311442;1116;659;Could not calculate this field;Could not calculate this field
324.79937744140625;81.43514251708984;56311456;1116;659;Could not calculate this field;Could not calculate this field
21.268386840820312;573.74755859375;56311479;1116;659;Could not calculate this field;Could not calculate this field
402.796875;496;56311569;1116;659;Could not calculate this field;Could not calculate this field
598.4923095703125;274.2239074707031;56313968;1116;659;Could not calculate this field;Could not calculate this field
464.10443115234375;83.53840637207031;56313968;1116;659;Could not calculate this field;Could not calculate this field
211.6731414794922;341.4178466796875;56313968;1116;659;Could not calculate this field;Could not calculate this field
587.5960083007812;495.78228759765625;56314000;1116;659;Could not calculate this field;Could not calculate this field
800.0740966796875;461.2773132324219;56314023;1116;659;Could not calculate this field;Could not calculate this field
542.1946411132812;461.2773132324219;56314172;1116;659;Could not calculate this field;Could not calculate this field
692.927001953125;455.8291320800781;56314172;1116;659;Could not calculate this field;Could not calculate this field
573.0675659179688;259.69549560546875;56314172;1116;659;Could not calculate this field;Could not calculate this field
467.73651123046875;237.90286254882812;56314172;1116;659;Could not calculate this field;Could not calculate this field
1085.1943359375;363.2104797363281;56314204;1116;659;Could not calculate this field;Could not calculate this field
422.335205078125;650.146728515625;56314224;1116;659;Could not calculate this field;Could not calculate this field
257.074462890625;644.6986083984375;56314306;1116;659;Could not calculate this field;Could not calculate this field
1081.562255859375;366.84259033203125;56314327;1116;659;Could not calculate this field;Could not calculate this field
593.0441284179688;114.41130065917969;56314502;1116;659;Could not calculate this field;Could not calculate this field
340.61285400390625;572.0565185546875;56314502;1116;659;Could not calculate this field;Could not calculate this field
781.91357421875;419.5080871582031;56314604;1116;659;Could not calculate this field;Could not calculate this field
1048.873291015625;568.4243774414062;56314604;1116;659;Could not calculate this field;Could not calculate this field
814.6025390625;294.2004699707031;56314680;1116;659;Could not calculate this field;Could not calculate this field
725.615966796875;168.8928680419922;56314680;1116;659;Could not calculate this field;Could not calculate this field
442.3117980957031;481.2538757324219;56314680;1116;659;Could not calculate this field;Could not calculate this field
738.3283081054688;448.56494140625;56314701;1116;659;Could not calculate this field;Could not calculate this field
896.3248901367188;305.0968017578125;56314737;1116;659;Could not calculate this field;Could not calculate this field
992.57568359375;243.35101318359375;56314831;1116;659;Could not calculate this field;Could not calculate this field
838.211181640625;452.1970520019531;56314831;1116;659;Could not calculate this field;Could not calculate this field
916.3014526367188;174.34103393554688;56314942;1116;659;Could not calculate this field;Could not calculate this field
1010.7362060546875;415.8759765625;56314942;1116;659;Could not calculate this field;Could not calculate this field
400.5425720214844;63.561832427978516;56314957;1116;659;Could not calculate this field;Could not calculate this field
709.2698974609375;114.41011047363281;56315003;1116;658;Could not calculate this field;Could not calculate this field
467.73651123046875;83.53840637207031;56315114;1116;659;Could not calculate this field;Could not calculate this field
209.85708618164062;341.4178466796875;56315114;1116;659;Could not calculate this field;Could not calculate this field
598.4923095703125;276.0399475097656;56315114;1116;659;Could not calculate this field;Could not calculate this field
656.60595703125;326.8894348144531;56315154;1116;659;Could not calculate this field;Could not calculate this field
660.2380981445312;179.7891845703125;56315154;1116;659;Could not calculate this field;Could not calculate this field
556.7230834960938;257.8794250488281;56315154;1116;659;Could not calculate this field;Could not calculate this field
307.9239196777344;114.41130065917969;56315154;1116;659;Could not calculate this field;Could not calculate this field
44.59632110595703;141.65208435058594;56315154;1116;659;Could not calculate this field;Could not calculate this field
91.81368255615234;365.0265197753906;56315154;1116;659;Could not calculate this field;Could not calculate this field
226.20155334472656;285.1202087402344;56315154;1116;659;Could not calculate this field;Could not calculate this field
604.911865234375;554.0067749023438;56324077;1116;659;Could not calculate this field;Could not calculate this field
988.965087890625;79.66456985473633;56324298;1116;659;Could not calculate this field;Could not calculate this field
1047.2237548828125;-187.6474609375;56324755;1116;659;Could not calculate this field;Could not calculate this field
826.4357299804688;193.8311309814453;56324755;1116;659;Could not calculate this field;Could not calculate this field
908.7220458984375;558.4744873046875;56324755;1116;659;Could not calculate this field;Could not calculate this field
807.7671508789062;-394.8784484863281;56324755;1116;659;Could not calculate this field;Could not calculate this field
841.7050170898438;348.4881286621094;56324908;1116;659;Could not calculate this field;Could not calculate this field
625.8474731445312;157.17963409423828;56325372;1116;659;Could not calculate this field;Could not calculate this field
528.9593505859375;455.7152404785156;56325447;1116;659;Could not calculate this field;Could not calculate this field
569.1694946289062;254.66439819335938;56325447;1116;659;Could not calculate this field;Could not calculate this field
1065.094970703125;-111.69491577148438;56326161;1116;659;Could not calculate this field;Could not calculate this field
734.4779663085938;428.9084777832031;56326246;1116;659;Could not calculate this field;Could not calculate this field
957.8677978515625;138.50169372558594;56326386;1116;659;Could not calculate this field;Could not calculate this field
582.5729370117188;321.6813659667969;56326386;1116;659;Could not calculate this field;Could not calculate this field
506.620361328125;567.41015625;56326386;1116;659;Could not calculate this field;Could not calculate this field
421.7322082519531;142.96949768066406;56326386;1116;659;Could not calculate this field;Could not calculate this field
144.72882080078125;17.871187210083008;56326386;1116;659;Could not calculate this field;Could not calculate this field
278.7626953125;513.7966003417969;56326440;1116;659;Could not calculate this field;Could not calculate this field
694.267822265625;-196.5830535888672;56326578;1116;659;Could not calculate this field;Could not calculate this field
207.27796936035156;335.084716796875;56326578;1116;659;Could not calculate this field;Could not calculate this field
564.7017211914062;254.66441345214844;56326761;1116;659;Could not calculate this field;Could not calculate this field
537.8949279785156;446.7795715332031;56326761;1116;659;Could not calculate this field;Could not calculate this field
694.267822265625;428.9084777832031;56326761;1116;659;Could not calculate this field;Could not calculate this field
624.0223388671875;641.55712890625;56326875;1116;659;Could not calculate this field;Could not calculate this field
779.1559448242188;415.5051574707031;56327033;1116;659;Could not calculate this field;Could not calculate this field
1033.8203125;562.9423828125;56327033;1116;659;Could not calculate this field;Could not calculate this field
792.559326171875;272.53558349609375;56327075;1116;659;Could not calculate this field;Could not calculate this field
421.7322082519531;49.1457633972168;56327203;1116;659;Could not calculate this field;Could not calculate this field
131.32542419433594;379.7627258300781;56327203;1116;659;Could not calculate this field;Could not calculate this field
153.66441345214844;227.8576202392578;56327203;1116;659;Could not calculate this field;Could not calculate this field
86.6474609375;317.21356201171875;56327414;1116;659;Could not calculate this field;Could not calculate this field
539.1664428710938;542.2197875976562;56327414;1116;659;Could not calculate this field;Could not calculate this field
404.8798522949219;70.88668060302734;56335682;1116;659;Could not calculate this field;Could not calculate this field
200.09609985351562;549.7655639648438;56336319;1116;659;Could not calculate this field;Could not calculate this field
811.2968139648438;300.87457275390625;56336766;1116;659;Could not calculate this field;Could not calculate this field
734.1090698242188;170.12803649902344;56336766;1116;659;Could not calculate this field;Could not calculate this field
450.5623779296875;483.6047058105469;56336766;1116;659;Could not calculate this field;Could not calculate this field
694.1093139648438;237.2645263671875;56336830;1116;659;Could not calculate this field;Could not calculate this field
485.3879089355469;617.2445678710938;56336866;1116;659;Could not calculate this field;Could not calculate this field
583.5048217773438;67.78986358642578;56336979;1116;659;Could not calculate this field;Could not calculate this field
10.858855247497559;119.52423858642578;56336979;1116;659;Could not calculate this field;Could not calculate this field
367.6476135253906;23.191268920898438;56337017;1116;659;Could not calculate this field;Could not calculate this field
108.97576904296875;629.732177734375;56337017;1116;659;Could not calculate this field;Could not calculate this field
774.6666259765625;332.360107421875;56337501;1116;659;Could not calculate this field;Could not calculate this field
819.173095703125;597.0233764648438;56337724;1116;659;Could not calculate this field;Could not calculate this field
674.4859619140625;221.2090301513672;56337742;1116;659;Could not calculate this field;Could not calculate this field
995.5958251953125;117.74029541015625;56337742;1116;659;Could not calculate this field;Could not calculate this field
365.8636779785156;16.05549430847168;56337877;1116;659;Could not calculate this field;Could not calculate this field
108.97576904296875;626.164306640625;56337877;1116;659;Could not calculate this field;Could not calculate this field
829.6890869140625;189.09805297851562;56338018;1116;659;Could not calculate this field;Could not calculate this field
924.2380981445312;558.3743896484375;56338018;1116;659;Could not calculate this field;Could not calculate this field
624.5355224609375;151.63522338867188;56338109;1116;659;Could not calculate this field;Could not calculate this field
1038.04052734375;485.0166931152344;56345055;1116;659;Could not calculate this field;Could not calculate this field
231.62722778320312;347.69268798828125;56345642;1116;659;Could not calculate this field;Could not calculate this field
509.197021484375;43.82680892944336;56345642;1116;659;Could not calculate this field;Could not calculate this field
623.146728515625;128.5586395263672;56345642;1116;659;Could not calculate this field;Could not calculate this field
836.4371948242188;46.74859619140625;56345642;1116;659;Could not calculate this field;Could not calculate this field
824.7500610351562;260.0390625;56345642;1116;659;Could not calculate this field;Could not calculate this field
1043.8841552734375;449.95526123046875;56345642;1116;659;Could not calculate this field;Could not calculate this field
927.0126342773438;467.4859619140625;56345642;1116;659;Could not calculate this field;Could not calculate this field
512.1188354492188;192.8379669189453;56345642;1116;659;Could not calculate this field;Could not calculate this field
368.95123291015625;11.687149047851562;56345742;1116;659;Could not calculate this field;Could not calculate this field
114.75572967529297;619.4188842773438;56345742;1116;659;Could not calculate this field;Could not calculate this field
512.1188354492188;411.9720153808594;56345821;1116;659;Could not calculate this field;Could not calculate this field
474.13555908203125;522.9999389648438;56345821;1116;659;Could not calculate this field;Could not calculate this field
582.24169921875;534.6870727539062;56345821;1116;659;Could not calculate this field;Could not calculate this field
991.2919311523438;566.8267211914062;56345821;1116;659;Could not calculate this field;Could not calculate this field
906.5601196289062;102.26255798339844;56345821;1116;659;Could not calculate this field;Could not calculate this field
179.03504943847656;397.3630676269531;56345821;1116;659;Could not calculate this field;Could not calculate this field
62.16355895996094;222.0558319091797;56345821;1116;659;Could not calculate this field;Could not calculate this field
103.0685806274414;438.2680969238281;56345943;1116;659;Could not calculate this field;Could not calculate this field
237.47079467773438;397.3630676269531;56345943;1116;659;Could not calculate this field;Could not calculate this field
363.107666015625;584.3574829101562;56345943;1116;659;Could not calculate this field;Could not calculate this field
929.9343872070312;160.69830322265625;56346002;1116;659;Could not calculate this field;Could not calculate this field
1011.7444458007812;403.2066650390625;56346002;1116;659;Could not calculate this field;Could not calculate this field
-78.08222961425781;134.4022216796875;56346002;1116;659;Could not calculate this field;Could not calculate this field
-63.47329330444336;-35.06144714355469;56346246;1116;659;Could not calculate this field;Could not calculate this field
848.1262817382812;359.3822326660156;56346304;1116;658;Could not calculate this field;Could not calculate this field
582.2418823242188;198.682861328125;56346304;1116;658;Could not calculate this field;Could not calculate this field
330.9679870605469;350.6144714355469;56346435;1116;659;Could not calculate this field;Could not calculate this field
307.59368896484375;93.4971923828125;56346641;1116;659;Could not calculate this field;Could not calculate this field
47.554622650146484;131.4804229736328;56346641;1116;659;Could not calculate this field;Could not calculate this field
222.8618621826172;274.64801025390625;56346641;1116;659;Could not calculate this field;Could not calculate this field
82.61607360839844;356.4580383300781;56346641;1116;659;Could not calculate this field;Could not calculate this field
564.7109985351562;260.0390625;56346641;1116;659;Could not calculate this field;Could not calculate this field
652.3646240234375;163.62008666992188;56346641;1116;659;Could not calculate this field;Could not calculate this field
658.2081909179688;327.24017333984375;56346641;1116;659;Could not calculate this field;Could not calculate this field
1002.9790649414062;420.73736572265625;56346779;1116;659;Could not calculate this field;Could not calculate this field
70.92892456054688;324.3183898925781;56347169;1116;659;Could not calculate this field;Could not calculate this field
263.7668762207031;373.98876953125;56347169;1116;659;Could not calculate this field;Could not calculate this field
287.14117431640625;511.3127746582031;56347743;1116;659;Could not calculate this field;Could not calculate this field
450.7612609863281;111.02791595458984;56348135;1116;659;Could not calculate this field;Could not calculate this field
605.6160278320312;87.65361785888672;56348135;1116;659;Could not calculate this field;Could not calculate this field
468.2919921875;341.84912109375;56348135;1116;659;Could not calculate this field;Could not calculate this field
906.5601196289062;558.0614013671875;56348135;1116;659;Could not calculate this field;Could not calculate this field
444.9176940917969;75.96646881103516;56348230;1116;659;Could not calculate this field;Could not calculate this field
605.6160278320312;271.7262268066406;56348230;1116;659;Could not calculate this field;Could not calculate this field
202.4093475341797;336.00555419921875;56348230;1116;659;Could not calculate this field;Could not calculate this field
383.5601501464844;52.59217071533203;56348230;1116;659;Could not calculate this field;Could not calculate this field
298.8283386230469;455.798828125;56349808;1116;659;Could not calculate this field;Could not calculate this field
699.1132202148438;213.2904815673828;56349808;1116;659;Could not calculate this field;Could not calculate this field
310.5154724121094;122.7150650024414;56349808;1116;659;Could not calculate this field;Could not calculate this field
851.046142578125;385.6759338378906;56349808;1116;659;Could not calculate this field;Could not calculate this field
1023.4315795898438;254.19549560546875;56349808;1116;659;Could not calculate this field;Could not calculate this field
56.31665802001953;61.357940673828125;56350252;1116;658;Could not calculate this field;Could not calculate this field
813.0645751953125;420.74017333984375;56350252;1116;658;Could not calculate this field;Could not calculate this field
506.2752380371094;295.10052490234375;56350412;1116;659;Could not calculate this field;Could not calculate this field
21.25853729248047;32.1396598815918;56350412;1116;659;Could not calculate this field;Could not calculate this field
50.473045349121094;432.4273986816406;56350718;1116;658;Could not calculate this field;Could not calculate this field
76.76930236816406;201.6046600341797;56350718;1116;658;Could not calculate this field;Could not calculate this field
497.5098571777344;593.122802734375;56350992;1116;659;Could not calculate this field;Could not calculate this field
103.0685806274414;116.87149047851562;56350992;1116;659;Could not calculate this field;Could not calculate this field
41.7110481262207;636.9496459960938;56350992;1116;659;Could not calculate this field;Could not calculate this field
141.05181884765625;353.5362548828125;56350992;1116;659;Could not calculate this field;Could not calculate this field