-
Notifications
You must be signed in to change notification settings - Fork 1
/
rewindclienthang.txt
1017 lines (1017 loc) · 180 KB
/
rewindclienthang.txt
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
{"type": "unit", "x": 281.939991, "y": 244.731085, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 122.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 122.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 269.583654, "y": 232.409490, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 256.692810, "y": 261.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 294.830834, "y": 263.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 214.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 89.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 54.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 137.772446, "y": 84.452025, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 92.792609, "y": 107.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 282.830834, "y": 275.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 285.031558, "y": 230.691196, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 133.913348, "y": 91.951014, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 146.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 293.227316, "y": 256.087894, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 251.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 287.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 288.296328, "y": 251.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 269.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 264.296328, "y": 251.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.238594, "y": 257.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 279.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.238594, "y": 245.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 86.792609, "y": 107.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 86.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 124.430151, "y": 120.973413, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 116.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 288.830834, "y": 263.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 120.611380, "y": 90.126158, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 136.430151, "y": 120.973413, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 36.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 282.830834, "y": 269.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 281.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 72.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.289248, "y": 101.474424, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 104.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 251.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 30.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 257.583654, "y": 286.409490, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 294.830834, "y": 275.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 127.074414, "y": 110.276881, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 294.830834, "y": 287.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 220.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 282.180860, "y": 222.118431, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 103.114740, "y": 113.930638, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 122.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 86.792609, "y": 119.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 214.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 241.663943, "y": 240.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 124.933511, "y": 90.777892, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 18.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 282.830834, "y": 281.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 282.830834, "y": 263.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 112.765724, "y": 108.843066, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 60.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 239.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 172.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 117.591216, "y": 115.299280, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 184.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 231.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 122.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 110.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 275.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 276.830834, "y": 287.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 256.692810, "y": 267.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 241.663943, "y": 246.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 107.940232, "y": 102.386852, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 288.830834, "y": 257.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 241.663943, "y": 228.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 281.882257, "y": 233.263960, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 122.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 131.899906, "y": 98.733094, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 134.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 251.583654, "y": 286.409490, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 239.583654, "y": 286.409490, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 30.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 133.242201, "y": 116.211707, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 140.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 239.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 278.675221, "y": 224.369600, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 241.663943, "y": 258.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 230.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 255.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 288.830834, "y": 281.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.792609, "y": 89.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 184.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 269.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 98.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 241.663943, "y": 252.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.248922, "y": 115.820667, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 294.830834, "y": 281.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 134.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 282.830834, "y": 251.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 288.830834, "y": 287.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 130.430151, "y": 120.973413, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 18.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 288.830834, "y": 275.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 30.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 242.376618, "y": 271.515129, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 272.554786, "y": 229.675927, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 288.238594, "y": 239.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 122.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 190.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 127.242201, "y": 116.211707, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 72.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 134.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 48.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 249.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 95.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 146.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 107.940232, "y": 108.386852, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 166.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 42.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 117.591216, "y": 109.299280, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 270.830834, "y": 269.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 282.830834, "y": 257.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 249.980136, "y": 278.962310, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 127.074414, "y": 98.276881, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 184.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 89.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 196.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 103.114740, "y": 101.930638, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 42.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 260.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 241.663943, "y": 264.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 275.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 263.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 30.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 112.765724, "y": 114.843066, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 249.267461, "y": 266.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 101.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 66.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.624822, "y": 95.344077, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 110.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 285.267461, "y": 242.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 281.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 275.939991, "y": 238.731085, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.238594, "y": 227.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 282.830834, "y": 287.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.248922, "y": 97.820667, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 30.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 95.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 129.423430, "y": 91.364453, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 107.940232, "y": 96.386852, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 128.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 140.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 104.792609, "y": 89.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 202.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 113.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 214.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 275.525919, "y": 226.942365, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 275.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 18.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 257.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 242.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 140.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 134.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 86.792609, "y": 113.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 264.296328, "y": 245.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.289248, "y": 113.474424, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 98.289248, "y": 107.474424, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 98.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 112.765724, "y": 120.843066, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 116.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 98.289248, "y": 119.474424, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 214.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 281.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 208.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 243.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 214.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 134.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 233.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 42.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 245.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.248922, "y": 109.820667, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 110.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 196.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 214.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 214.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.238594, "y": 233.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 98.000000, "y": 52.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 263.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 103.114740, "y": 107.930638, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 196.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 241.663943, "y": 234.871938, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 236.376618, "y": 271.515129, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 54.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.792609, "y": 89.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 72.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.792609, "y": 71.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 264.296328, "y": 263.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 101.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 115.953675, "y": 89.604771, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 117.591216, "y": 97.299280, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 122.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 294.830834, "y": 269.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 133.282527, "y": 83.865465, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 196.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 290.911124, "y": 247.997523, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 112.765724, "y": 102.843066, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 178.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 278.732955, "y": 235.836725, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 110.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 24.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 128.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 92.792609, "y": 119.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 36.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 10.480000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 214.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 273.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 256.692810, "y": 237.605501, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 264.296328, "y": 287.052681, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.792609, "y": 77.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 92.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 116.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 92.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 103.114740, "y": 119.930638, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 178.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 30.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 245.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 46.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 24.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 117.591216, "y": 103.299280, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 166.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 127.074414, "y": 104.276881, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 30.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 184.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 172.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 72.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 42.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 131.899906, "y": 104.733094, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 220.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 288.830834, "y": 269.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 248.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 190.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 245.583654, "y": 286.409490, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 128.000000, "y": 16.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 202.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.238594, "y": 251.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 22.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 60.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 254.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.248922, "y": 103.820667, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 220.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 220.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 60.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.594931, "y": 263.907151, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 208.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 214.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 104.792609, "y": 65.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 190.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 110.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 6.400000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 104.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 103.114740, "y": 95.930638, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 104.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 178.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 131.899906, "y": 110.733094, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 107.940232, "y": 120.386852, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 30.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 18.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 146.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 48.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 243.980136, "y": 278.962310, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.000000, "y": 40.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 116.000000, "y": 2.320000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 208.000000, "y": 66.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 214.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 36.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 236.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 122.792609, "y": 83.278904, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 237.980136, "y": 278.962310, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 140.000000, "y": 28.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 66.000000, "y": 18.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 30.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 249.267461, "y": 272.319118, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 270.830834, "y": 257.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 276.830834, "y": 257.535074, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 98.000000, "y": 34.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 107.940232, "y": 114.386852, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 178.000000, "y": 48.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 30.000000, "y": 24.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 112.765724, "y": 96.843066, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 118.430151, "y": 120.973413, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":1 }
{"type": "unit", "x": 172.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 234.238594, "y": 239.585556, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 36.000000, "y": 30.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 166.000000, "y": 54.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 190.000000, "y": 72.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": -1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 913.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 784.416346, "y": 737.590510, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 730.772684, "y": 767.912106, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 901.751078, "y": 908.179333, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 760.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 768.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 911.234276, "y": 903.156934, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 742.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 786.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 772.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 919.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.761406, "y": 766.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 790.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 777.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 760.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 778.416346, "y": 737.590510, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 913.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 904.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 895.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.207391, "y": 934.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 895.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 742.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 901.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 895.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 729.169166, "y": 754.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 904.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 925.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 892.100094, "y": 925.266906, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 903.388620, "y": 933.873842, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 735.169166, "y": 736.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 916.059768, "y": 909.613148, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 786.019864, "y": 745.037690, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.925586, "y": 925.723119, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.710752, "y": 910.525576, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 883.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 901.751078, "y": 920.179333, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 735.169166, "y": 760.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 735.169166, "y": 766.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 899.569849, "y": 903.026587, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 789.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 748.060009, "y": 785.268915, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 916.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 901.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 883.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 901.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 735.761406, "y": 784.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 922.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 729.169166, "y": 742.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 911.234276, "y": 909.156934, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 760.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 895.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 766.416346, "y": 737.590510, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 889.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 906.408784, "y": 908.700720, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 784.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 913.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 784.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 735.703672, "y": 772.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 754.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 919.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 894.576570, "y": 932.635547, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 892.100094, "y": 913.266906, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.885260, "y": 904.069362, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 780.019864, "y": 745.037690, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 766.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.046325, "y": 934.395229, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 919.207391, "y": 934.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.405069, "y": 760.092849, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 907.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 736.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 766.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 771.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 736.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 893.569849, "y": 903.026587, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 748.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 757.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 736.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 751.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 742.117743, "y": 790.736040, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.885260, "y": 922.069362, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 774.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 778.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 783.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 911.234276, "y": 927.156934, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 792.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 754.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 745.267045, "y": 788.163275, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 738.732539, "y": 781.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.375178, "y": 928.655923, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 916.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 886.227554, "y": 939.547975, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 754.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 766.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.717473, "y": 940.134535, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 922.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 775.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 906.408784, "y": 920.700720, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 795.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.761406, "y": 784.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 896.925586, "y": 919.723119, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 762.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 742.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.757799, "y": 907.788293, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 760.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 889.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 772.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 781.623382, "y": 752.484871, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.019864, "y": 745.037690, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 907.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.757799, "y": 907.788293, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 905.569849, "y": 903.026587, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 766.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.761406, "y": 772.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 887.569849, "y": 903.026587, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 750.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 793.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 735.169166, "y": 754.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 910.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 840.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 745.324779, "y": 799.630400, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 744.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 907.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 787.623382, "y": 752.484871, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 772.416346, "y": 737.590510, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 735.169166, "y": 748.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 910.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 778.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 733.088876, "y": 776.002477, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 748.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 729.169166, "y": 748.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 899.066489, "y": 933.222108, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.710752, "y": 904.525576, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 787.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 763.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 913.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 934.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.761406, "y": 796.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.761406, "y": 778.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 822.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 958.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 759.703672, "y": 778.947319, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.885260, "y": 928.069362, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 901.751078, "y": 914.179333, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 911.234276, "y": 915.156934, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 901.207391, "y": 946.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 916.059768, "y": 921.613148, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 892.100094, "y": 919.266906, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 889.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 1013.520000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 890.086652, "y": 932.048986, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 751.445214, "y": 794.324073, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 735.169166, "y": 742.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 736.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.885260, "y": 916.069362, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 729.169166, "y": 760.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 1017.600000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 919.207391, "y": 940.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 747.169166, "y": 754.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1006.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 756.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 742.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 896.925586, "y": 913.723119, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.000000, "y": 996.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 916.059768, "y": 903.613148, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 729.169166, "y": 736.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 907.207391, "y": 952.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 834.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 890.000000, "y": 1008.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 964.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 994.000000, "y": 964.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 902.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 1002.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 919.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 913.207391, "y": 934.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 883.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 858.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 901.751078, "y": 926.179333, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 934.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 916.059768, "y": 927.613148, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 754.416346, "y": 791.590510, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 920.885260, "y": 910.069362, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 958.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 781.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 772.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 846.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 789.761406, "y": 790.414444, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 911.234276, "y": 921.156934, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 738.968442, "y": 793.308804, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 916.059768, "y": 915.613148, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 774.732539, "y": 769.680882, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 982.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 906.408784, "y": 926.700720, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 742.060009, "y": 779.268915, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 952.000000, "y": 976.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 937.207391, "y": 928.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 810.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 741.819140, "y": 801.881569, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 908.000000, "y": 1021.680000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 772.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 765.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 741.169166, "y": 748.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 906.408784, "y": 914.700720, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 1006.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 816.000000, "y": 982.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 753.169166, "y": 748.464926, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 748.474081, "y": 797.057635, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 1000.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.710752, "y": 916.525576, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 931.207391, "y": 928.721096, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 1000.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 878.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 852.000000, "y": 958.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 976.000000, "y": 952.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 914.000000, "y": 990.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 932.000000, "y": 978.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 926.000000, "y": 972.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }
{"type": "unit", "x": 767.307190, "y": 780.394499, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 925.710752, "y": 922.525576, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":4, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 782.336057, "y": 759.128062, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":5, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 804.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 970.000000, "y": 970.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 828.000000, "y": 988.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":2, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 988.000000, "y": 994.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":1, "course": 0.000,"rem_cooldown":0, "cooldown":60, "selected":0 }
{"type": "unit", "x": 884.000000, "y": 984.000000, "r": 2.000000, "hp": 100, "max_hp": 100, "enemy": 1, "unit_type":3, "course": 0.000,"rem_cooldown":0, "cooldown":0, "selected":0 }