-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFIRMS.html
7293 lines (4870 loc) · 573 KB
/
FIRMS.html
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
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_97028f1538063efd4305c54010025d57 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_97028f1538063efd4305c54010025d57" ></div>
</body>
<script>
var map_97028f1538063efd4305c54010025d57 = L.map(
"map_97028f1538063efd4305c54010025d57",
{
center: [47.5067, 34.5851],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_b9d85b3e45687412f51f75add776ea10 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_8ee7dd73675e87711fa23b4004a91694 = L.circle(
[46.06979, 13.63111],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8116348773841962, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 202.90871934604903, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_9590da22f626d4d3de88e25234a562f4 = L.circle(
[45.46414, 10.45491],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8463760217983651, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.5940054495913, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b5ec0af99fd0419c001b44850d267ac2 = L.circle(
[44.59884, 20.97644],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8356675749318802, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.91689373297004, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_077a4d1f2cd2d36a9c8876e78bdf434c = L.circle(
[45.45848, 10.45438],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9219891008174387, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 230.49727520435968, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_cb63178b8e548dcf37304cfbea7a4682 = L.circle(
[45.45829, 10.45984],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8232697547683924, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.81743869209808, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d2e5623daa92f37a5dc01cd517e042a3 = L.circle(
[45.42717, 10.99922],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8332425068119891, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.31062670299727, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_4ddc65f430270959bec1c72c6b09695c = L.circle(
[45.15117, 9.94276],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8149863760217985, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.74659400544962, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_e0d1e7f1da098f52e6be50a26e460277 = L.circle(
[45.14538, 9.94231],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9098637602179837, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 227.46594005449592, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_44149159ed3f63c0cc32e18f5848c40d = L.circle(
[43.2823, 23.464],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8144686648501364, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.6171662125341, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5112a3e0cf23ccc030d4a32314c48bac = L.circle(
[42.55534, 27.34109],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8094277929155314, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 202.35694822888283, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_f540d20ee3f0e96c65d03c7cb2b48b11 = L.circle(
[41.18146, 32.63175],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8164305177111717, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.10762942779292, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_85f3a579265e144bd9c49d55d4223430 = L.circle(
[41.17538, 32.63606],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.827765667574932, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 206.941416893733, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_96380888b8ea6afa87dcb1b08b4cb865 = L.circle(
[42.7149, 24.17166],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9429427792915531, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 235.7356948228883, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0ccdab636206d17b00eebe23e50da5d6 = L.circle(
[42.71643, 24.16233],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8246321525885558, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 206.15803814713897, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d04115c40295e5b4d8847f3b10c1175a = L.circle(
[41.26466, 31.4251],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8185558583106267, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.63896457765668, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_a9c071506784abf8c99e0cc7c057e9aa = L.circle(
[41.26336, 31.43058],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8573841961852862, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 214.34604904632155, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_9fdcb4094a64140081e7ad4c80f03541 = L.circle(
[42.45654, 20.93717],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8048773841961853, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 201.21934604904632, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_2460e0cbe095fd4445f8377560f08aa6 = L.circle(
[43.44648, 4.8894],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8342234332425069, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.55585831062672, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_38cfa6d0297b2cefb0271778197c57fe = L.circle(
[43.44655, 4.89919],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8414713896457765, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.36784741144413, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6b01ef410cd258c285070fa88726eb0e = L.circle(
[43.43213, 4.89919],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8201362397820163, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.03405994550408, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_79954bc7efd140bb97c74097c0917df9 = L.circle(
[42.01574, 21.46719],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8467847411444142, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.69618528610354, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c17e53a32753e8cef54630abf843f995 = L.circle(
[39.83791, 30.30072],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8155313351498638, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.88283378746593, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d1201e73f634931751299ea551d4af51 = L.circle(
[40.4439, 27.13529],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.820408719346049, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.10217983651225, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_47777f8ce27a79769929aaca04aeb604 = L.circle(
[40.44283, 27.14079],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8360490463215259, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 209.01226158038148, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_264f9ed4d84f9cc61b0864e3d63ef2f5 = L.circle(
[39.48477, 30.04034],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8322343324250682, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.05858310626704, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_df335994e09c1f1e5e4d67761be91157 = L.circle(
[39.86531, 26.24546],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8340054495912806, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.50136239782017, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_f39342762244bda961b80d89abe0e6aa = L.circle(
[38.65703, 30.6181],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8219073569482288, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.4768392370572, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c126c575ed76c6773871e51a9a9a876c = L.circle(
[40.6265, 18.00152],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8297547683923705, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.43869209809262, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_36846b24b6e756e048e87b0214da6026 = L.circle(
[38.62934, 29.46551],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8158855585831063, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.97138964577658, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5c7f8d753f9ef41bda66e96deae70e35 = L.circle(
[38.62522, 29.46396],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9223433242506812, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 230.5858310626703, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c00798d1dd0c1e420ec973d1f43bee3a = L.circle(
[40.52065, 17.20737],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8497547683923706, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 212.43869209809264, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_cdd143e1d77c1d86b7a5ede71cd954f4 = L.circle(
[40.51684, 17.20661],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8253950953678475, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 206.34877384196187, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6bb0319c58f78db19e9e86f108e9d601 = L.circle(
[40.50855, 17.21125],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8614986376021799, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 215.37465940054497, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_cef066594253192dee75e2b13b640357 = L.circle(
[40.50407, 17.21663],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9119891008174387, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 227.99727520435968, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_22719b764d6eb77afcfe4291dc6625c3 = L.circle(
[40.50474, 17.21052],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8281198910081744, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.0299727520436, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5ec728069a2a1903aa8348e406bf008b = L.circle(
[40.55937, 16.50389],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8293188010899183, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.32970027247958, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_9c7e90ec26c5d9dfbabba23aea445d26 = L.circle(
[38.75426, 26.951],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8454768392370573, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.36920980926433, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b15408ad484403105264904323fc3fa5 = L.circle(
[38.72458, 26.93964],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8543051771117165, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.57629427792912, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_019f8070d576203eba1145b44307c57f = L.circle(
[39.38609, 22.807],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8238419618528611, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.96049046321528, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_bdbc44ec26618af54bc543bfcbb48f92 = L.circle(
[39.35363, 22.98384],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8403269754768392, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.08174386920982, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_228f5eaa70a881ce19fc9469c5e1f74f = L.circle(
[38.4251, 27.21425],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8345231607629428, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.6307901907357, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c8e1c458d15a47060ad9dc1e1bdc970d = L.circle(
[37.25399, 30.44225],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8176566757493188, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.4141689373297, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_971ea94a263bad409846a930d72acdb6 = L.circle(
[38.37266, 24.06091],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.833433242506812, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.358310626703, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_8f68f8235ced9423069e4dc482047909 = L.circle(
[38.12829, 23.5225],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8498365122615803, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 212.45912806539508, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0c663444c77d1c5def663763d0cb3341 = L.circle(
[38.79264, 15.20582],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8338964577656677, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.47411444141693, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_31670d58fb589d62c0615cb73b6431b9 = L.circle(
[38.64386, 15.90512],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8259400544959128, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 206.4850136239782, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_9576fba17bc5e083850910c4867378c1 = L.circle(
[38.09035, 12.74619],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9038147138964577, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 225.95367847411444, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b29817326c8ebc455ae46eb715e45a7c = L.circle(
[38.09086, 12.73994],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8375476839237057, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 209.38692098092642, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_636a3efb95e844d7b81d39269ee760d9 = L.circle(
[38.08982, 12.7529],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.853542234332425, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.38555858310627, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b01865db2edb1ca111673b4cb88e6751 = L.circle(
[38.08609, 12.74026],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9224523160762943, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 230.61307901907358, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_56e6bf4699c113a75292e7d790688d37 = L.circle(
[38.0856, 12.74631],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9402179836512262, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 235.05449591280654, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_272194004cf4ebdb4d92f19b1f625296 = L.circle(
[38.08512, 12.75231],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9167847411444141, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 229.1961852861035, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_a2ccebc143a1cecbd214a2bfa1aa0d88 = L.circle(
[38.08085, 12.74647],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9483106267029972, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 237.0776566757493, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c30379b59bde0506dd4f7cb81fb90d51 = L.circle(
[38.08041, 12.75204],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8303542234332425, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.58855585831063, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d7d19da3d573874ae66f4a3d1dc6fcef = L.circle(
[37.9282, 13.26177],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8826702997275204, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 220.6675749318801, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_15bf622173f0602bb139fc693ce23280 = L.circle(
[37.92871, 13.25564],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8466212534059945, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.65531335149862, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c0534575836513024783c23a0079d747 = L.circle(
[37.74734, 14.99841],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8166757493188012, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.1689373297003, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_67cb94f0e54c203ce0b77bc33ad1713d = L.circle(
[37.87427, 13.18868],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8700000000000001, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 217.50000000000003, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0e30120a6b89fb55e2a53e572e0348c8 = L.circle(
[37.86967, 13.18859],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8331607629427792, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.2901907356948, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_2a68ac1f11058d07b5cb5e69ed98da8e = L.circle(
[37.8745, 13.18655],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8709809264305176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 217.7452316076294, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_27c05e016800717e2af4a8f1ac93cff8 = L.circle(
[37.86988, 13.18647],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8221798365122616, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.5449591280654, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_3e612056d8a6c34e82c7b41fe3b212ec = L.circle(
[37.86013, 13.02843],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.822016348773842, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.5040871934605, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_4a0f1f5ed3292ed9cf84b4d1524d3e2c = L.circle(
[37.84278, 13.06888],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8332425068119891, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.31062670299727, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_34e4472b67a89996851efe76e00f420e = L.circle(
[37.83251, 13.19139],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8182561307901908, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.5640326975477, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_ab86ed7061d83cf2280c05202dace94b = L.circle(
[37.74852, 13.04269],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8285013623978201, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.12534059945503, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5f5eb3a5b9f1e9e1f70c571a0c5bd040 = L.circle(
[37.44055, 15.03115],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8120980926430518, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.02452316076295, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_14d4b44271b174defeef1614e870dc84 = L.circle(
[37.43645, 15.03049],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8816348773841962, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 220.40871934604905, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b987d73ae4fedef58f7310987e2eb182 = L.circle(
[37.54546, 13.31936],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8217166212534059, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 205.4291553133515, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_64931772cde83534512908a3ae7abb23 = L.circle(
[37.54482, 13.31897],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8264305177111717, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 206.60762942779292, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_264263c999f343006ceb3c828c874280 = L.circle(
[37.33583, 14.32345],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9308446866485014, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 232.71117166212534, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_7d7fe41f8644f2e13c5cccf892900c70 = L.circle(
[35.35109, 5.75973],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8452861035422344, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.3215258855586, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_77c63a066bdcc4b37243517e0c50975f = L.circle(
[35.348, 5.76048],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8503269754768392, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 212.58174386920982, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_e907b85d3abafcb5d4ba2f48fb37a94b = L.circle(
[66.30946, 14.17577],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.83574931880109, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.9373297002725, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0cdedf62a80ca65617abac61d136d3e3 = L.circle(
[66.30904, 14.17877],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8084196185286103, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 202.10490463215257, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_cbba5b2b4c0a41013cf6a5666d0304f9 = L.circle(
[65.76313, 24.18287],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8496185286103543, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 212.40463215258856, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_bebf3bad83fcdb8d4259dd0daeb07800 = L.circle(
[63.31622, 9.14121],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8165940054495913, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.1485013623978, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_cd43efd56c8525e79b13e661b6f45780 = L.circle(
[60.5222, 28.12657],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8535967302452315, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.3991825613079, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_ef4c7cb5347192807d831d5fa9eb437d = L.circle(
[60.15345, 30.26789],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9185013623978201, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 229.62534059945503, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_76a555597f674b95c6559979fd318aaa = L.circle(
[59.38567, 28.45929],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.829100817438692, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.275204359673, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_48153f55742da74e680b4db5bea1836b = L.circle(
[58.35826, 12.37571],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8412534059945505, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.31335149863762, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_1e7acca4dfb873823631eb6a622bd52b = L.circle(
[58.36119, 12.37507],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8308719346049046, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.71798365122615, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_dcc6170becc0eb388031d0509f0b3717 = L.circle(
[57.06315, 9.97281],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8466485013623979, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.66212534059946, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_328f548917de33794023f666095d2d78 = L.circle(
[55.50379, 28.58813],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8131880108991826, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.29700272479565, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_7a0409184ea5307a7fb7344303a9b12b = L.circle(
[55.4848, 28.5982],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9291008174386921, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 232.27520435967304, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_85d5994baa0ee5a051462d4c8d7ecd1f = L.circle(
[53.44431, 34.41681],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8846866485013625, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 221.17166212534062, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_da5df0a51fd4a866cb9abd9f84efa592 = L.circle(
[53.4434, 34.41749],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8946866485013625, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 223.67166212534062, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_e637855c48a8b5f8155a3c58c1c9e057 = L.circle(
[52.80548, 32.2223],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8178201634877383, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.45504087193459, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6fb711e2f31de97cf9a76075bb472942 = L.circle(
[53.98716, 20.71259],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8353405994550408, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.8351498637602, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_a66dceda6f9080400c6fdae6f09f9b5d = L.circle(
[53.525, 9.89893],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8319073569482289, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.97683923705722, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_625ed50a380ee18e41802fd22e518175 = L.circle(
[51.44683, 30.1719],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8446866485013624, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.17166212534062, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_478bf40e2f4122708ff24c86be2050e1 = L.circle(
[51.46764, 29.8859],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8830790190735694, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 220.76975476839237, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6ab6279bea5859fa701b4a030b8c81ec = L.circle(
[51.46658, 29.89164],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8799727520435967, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 219.9931880108992, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b5a697c65ef3de1fc5306f0e4fcd9a42 = L.circle(
[51.41352, 30.17488],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8166212534059946, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.15531335149865, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6cdb6beff52730847d9290c1bbe260ea = L.circle(
[51.46432, 29.88433],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8183923705722072, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.59809264305179, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_278dbafd89a033717eb79c1a6cb952d3 = L.circle(
[51.46326, 29.89006],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8123705722070844, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.0926430517711, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_ff982f2fc3f9eda46d5d1ca3e23b5aeb = L.circle(
[51.46112, 29.90155],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8285558583106266, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.13896457765665, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5fb923ed4e02e3a3e9c77f98b7540fda = L.circle(
[51.45673, 29.90572],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8842779291553132, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 221.0694822888283, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_babcb0ef2d4aa8528c70ef444dd7307f = L.circle(
[51.4578, 29.89997],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8120435967302452, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.0108991825613, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b4d6d6f66fe54955140aa66e6ebb8232 = L.circle(
[51.45341, 29.90414],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8834604904632153, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 220.8651226158038, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_360c80e788cd84c5fce3ebd287056159 = L.circle(
[51.45769, 29.88117],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8064305177111716, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 201.6076294277929, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_1f358a9b78fd8e3700c31763a481bbfa = L.circle(
[51.45662, 29.8869],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8524250681198909, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.10626702997274, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_f378cfe15fe58d558d9bc330e368f9c5 = L.circle(
[51.45009, 29.90257],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8886376021798364, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 222.1594005449591, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b2bebae934082b5b570ca2e01e60cfdd = L.circle(
[51.4533, 29.88532],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8099727520435968, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 202.4931880108992, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_71f2159fb89691ab5e8011208bfd0a7e = L.circle(
[51.44677, 29.90099],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9154768392370572, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 228.8692098092643, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_30c096489a24f7ee9070b94b1b6f60c0 = L.circle(
[51.45105, 29.87801],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8460490463215259, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.51226158038148, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_12b31a1728462b12b7d94f1fef7fcb6a = L.circle(
[51.44998, 29.88375],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8617711171662125, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 215.4427792915531, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_7d8f8d114e0398862a221ae47cff1d29 = L.circle(
[51.44891, 29.88949],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8161580381471389, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.03950953678475, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_70c14a112f8f387eecefeabe5f95d0fc = L.circle(
[51.44784, 29.89524],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8182288828337875, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.55722070844686, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_780605605ab04171c2367457831223ec = L.circle(
[51.44773, 29.87644],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8900817438692099, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 222.5204359673025, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5f49cf8b08a60fe878532edc9b39c44e = L.circle(
[51.44666, 29.88218],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9025068119891009, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 225.62670299727523, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_33e47f11a417bda387e5e671132b8ed7 = L.circle(
[51.44452, 29.89366],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9580653950953679, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 239.51634877384197, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_176d74e6d9bdaa20dc740d1993e67d0d = L.circle(
[51.44345, 29.89941],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9052588555858311, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 226.31471389645776, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b335febe63212d61aa75a2e9a491d1fb = L.circle(
[51.44559, 29.88791],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.818991825613079, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.74795640326977, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_62c47fac1b7a9f7c3599f1a467ea51b3 = L.circle(
[51.4412, 29.89209],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9057220708446866, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 226.43051771117166, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_062b96393ba546d3c7c37ac29cab4b39 = L.circle(
[51.44334, 29.8806],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8301907356948229, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 207.54768392370573, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_72773d646f21f26d3e67b1c6238acc28 = L.circle(
[51.44227, 29.88634],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8419073569482289, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.47683923705722, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6318bc42e688363e41bc0c9aaa829197 = L.circle(
[51.47394, 29.53956],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8790190735694824, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 219.7547683923706, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_42f747291b7c5a4ee22c854bdba61d99 = L.circle(
[51.47291, 29.54525],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8888010899182561, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 222.20027247956403, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b6bd56fb75015395d6295d26c5910ffd = L.circle(
[51.47497, 29.53388],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8662942779291554, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 216.57356948228883, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_63b3a72491914b43b7e401ff37219083 = L.circle(
[51.47085, 29.55659],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8418801089918256, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.4700272479564, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0a7bb3cf2789e1709f3a40523f3b37dd = L.circle(
[51.47167, 29.53234],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8680653950953678, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 217.01634877384197, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d1dd94534478642101b520e3b9191811 = L.circle(
[51.47064, 29.53801],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8464577656675749, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.61444141689373, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_7579c668f64e7efbe3f8b0f31dc61170 = L.circle(
[51.46961, 29.5437],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8126430517711172, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.1607629427793, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_1018196acf60362a77caf24c0156717f = L.circle(
[51.46837, 29.53079],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8549318801089918, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.73297002724794, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b3df58646a0c0ea2e0a2b4a0a0ec56b2 = L.circle(
[51.46734, 29.53647],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8169209809264305, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 204.23024523160763, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c54627662fad7354318f02fe96030a0f = L.circle(
[51.46404, 29.53492],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.807874659400545, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 201.96866485013626, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_463e081f3c08229a838e6e910c6f3dd7 = L.circle(
[51.46177, 29.5277],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8117438692098093, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 202.93596730245233, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_2f4ef019b6110164781fb2cbbf32dbc4 = L.circle(
[51.46074, 29.53338],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8553405994550409, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.83514986376022, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_574fd2c46466e75b8d3dcd21ef927441 = L.circle(
[51.45847, 29.52616],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9367574931880109, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 234.18937329700273, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_395c0e4ed69abc4fe4f3069955cffe6a = L.circle(
[51.45744, 29.53184],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9613623978201634, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 240.34059945504086, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_175c531d3441e6580952ee1ab9295f7b = L.circle(
[51.45414, 29.53029],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8321525885558583, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.03814713896458, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_979d2d2d179893619b2aeb3ce6612232 = L.circle(
[51.44793, 29.56437],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8549318801089918, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.73297002724794, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_b1efa39a8eb84afdf62db86dcbcb8edd = L.circle(
[51.44255, 29.5742],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8812806539509537, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 220.32016348773843, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_65c2e5835d52b5de017ed817b3bd1490 = L.circle(
[51.44152, 29.57989],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8133787465940054, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.34468664850135, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_7c9294057b716f6e1dd8fe33632b7287 = L.circle(
[51.43925, 29.57266],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8460217983651226, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.50544959128064, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_828a219a1aabaee894327e1835aaaf88 = L.circle(
[51.40376, 29.53146],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8447411444141689, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 211.18528610354224, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_39a9ae4e556fdf0f8692eaddf97392cd = L.circle(
[51.40046, 29.52992],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.90574931880109, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 226.4373297002725, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_e4a26f9181f1a6ee31f7b317f329a4ef = L.circle(
[51.40149, 29.52425],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.834850136239782, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 208.7125340599455, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_06b1db9471b4f5dac9d845c7708c7504 = L.circle(
[51.39819, 29.52272],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8146321525885559, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.65803814713897, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_50c651f997a30777f88518e567d98f71 = L.circle(
[51.39716, 29.52838],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8520163487738419, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 213.0040871934605, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_6568cb6b6336146435f3c8729f9e9de3 = L.circle(
[51.39281, 29.53251],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8910354223433242, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 222.75885558583104, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_20d8432662fcec5dd4c42b7cf23eb6e2 = L.circle(
[51.39177, 29.53819],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9101362397820163, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 227.53405994550408, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_48d8ac12cc00245f527eeeebc887b6d8 = L.circle(
[51.39385, 29.52685],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8429427792915531, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.7356948228883, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_14137dc5576b24c00511563e96adda28 = L.circle(
[51.39228, 29.5379],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9306267029972752, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 232.65667574931882, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_bd091190de6bba5a07a2ca1c24e4ad07 = L.circle(
[51.39434, 29.52656],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8408719346049047, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 210.21798365122618, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_9a8402a66e1a7c9d44520fc43fd6dec7 = L.circle(
[51.39331, 29.53223],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8711716621253407, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 217.79291553133518, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0c21aa567d2c85537cf1b93cada685a8 = L.circle(
[51.39103, 29.52501],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8103814713896459, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 202.59536784741147, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_42774662a43468ffd27fc188aab0b550 = L.circle(
[51.39001, 29.53069],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8503542234332425, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 212.58855585831063, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_0f357e7e25beb45bb9aaec24d53772a2 = L.circle(
[51.3739, 29.56015],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.87716621253406, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 219.291553133515, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_126b39ad8eebaad3f23e61988f639e98 = L.circle(
[51.377, 29.54311],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8071934604904633, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 201.79836512261582, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_c94d05b9064faa98f5b989d82971d4ac = L.circle(
[51.37287, 29.56583],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8618801089918257, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 215.4700272479564, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d590a366a2b9bd4ff5036c698fd854fd = L.circle(
[51.36956, 29.56429],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8932697547683923, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 223.31743869209808, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_d10c83e716b8804a81dfabfb85e30b70 = L.circle(
[51.37163, 29.55292],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8130245231607629, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 203.25613079019072, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_f96ed3b10a1603d4f6e7889cc5b3d21a = L.circle(
[51.37262, 29.44884],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8891825613079019, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 222.29564032697547, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_5063859c6b78edf55aa5160a85e89dd9 = L.circle(
[51.37159, 29.4545],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8664850136239782, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 216.62125340599457, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_e9d0fcd4dc02047b61f32c48fecc04d2 = L.circle(
[51.36932, 29.44732],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.8068119891008175, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1, "radius": 201.70299727520438, "stroke": true, "weight": 1}
).addTo(map_97028f1538063efd4305c54010025d57);
var circle_1c6749bf7907d7ea7e3979d8e59fbbe4 = L.circle(