-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3966 lines (2535 loc) · 566 KB
/
index.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>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/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://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<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>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_432d8f7d0ccb4c46976856e7383ad255 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_432d8f7d0ccb4c46976856e7383ad255" ></div>
</body>
<script>
var map_432d8f7d0ccb4c46976856e7383ad255 = L.map(
"map_432d8f7d0ccb4c46976856e7383ad255",
{
center: [42.3624477, -71.0843118],
crs: L.CRS.EPSG3857,
zoom: 14,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_711e8a854e82454a9aefdee11958c70c = 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_432d8f7d0ccb4c46976856e7383ad255);
var marker_42602eb893e440aa80634df776aca4d8 = L.marker(
[42.3157205, -71.1174339],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_0425203cfbec48ffb0589de1eda23502 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e56\u003c/div\u003e"});
marker_42602eb893e440aa80634df776aca4d8.setIcon(div_icon_0425203cfbec48ffb0589de1eda23502);
var popup_977df7bbb80649e2a9fcd1680014a56c = L.popup({"maxWidth": "100%"});
var html_856b581933e743d2be00eaec0932ec03 = $(`<div id="html_856b581933e743d2be00eaec0932ec03" style="width: 100.0%; height: 100.0%;">42.3157205, -71.1174339</div>`)[0];
popup_977df7bbb80649e2a9fcd1680014a56c.setContent(html_856b581933e743d2be00eaec0932ec03);
marker_42602eb893e440aa80634df776aca4d8.bindPopup(popup_977df7bbb80649e2a9fcd1680014a56c)
;
var marker_1aef2ff91c5849d79dda7d71f5d6012e = L.marker(
[42.3737246, -71.1008111],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_84e7459d616546efa07fa8aeaf64b1d4 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e37\u003c/div\u003e"});
marker_1aef2ff91c5849d79dda7d71f5d6012e.setIcon(div_icon_84e7459d616546efa07fa8aeaf64b1d4);
var popup_a6186f8796b64aaf91a2e67a6ccb4574 = L.popup({"maxWidth": "100%"});
var html_421fa4b592454f64a942e5994564077e = $(`<div id="html_421fa4b592454f64a942e5994564077e" style="width: 100.0%; height: 100.0%;">42.3737246, -71.1008111</div>`)[0];
popup_a6186f8796b64aaf91a2e67a6ccb4574.setContent(html_421fa4b592454f64a942e5994564077e);
marker_1aef2ff91c5849d79dda7d71f5d6012e.bindPopup(popup_a6186f8796b64aaf91a2e67a6ccb4574)
;
var marker_6b47fc2ccb02488cb7d3d8df3a3ebe1e = L.marker(
[42.310066, -71.107549],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_a2e4671616774e4693c84b7aa401beff = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e25\u003c/div\u003e"});
marker_6b47fc2ccb02488cb7d3d8df3a3ebe1e.setIcon(div_icon_a2e4671616774e4693c84b7aa401beff);
var popup_86a7079e65ce46379ecf6b96901df7d4 = L.popup({"maxWidth": "100%"});
var html_52d68c78d8774c699ecc839bd8dffd03 = $(`<div id="html_52d68c78d8774c699ecc839bd8dffd03" style="width: 100.0%; height: 100.0%;">42.310066, -71.107549</div>`)[0];
popup_86a7079e65ce46379ecf6b96901df7d4.setContent(html_52d68c78d8774c699ecc839bd8dffd03);
marker_6b47fc2ccb02488cb7d3d8df3a3ebe1e.bindPopup(popup_86a7079e65ce46379ecf6b96901df7d4)
;
var marker_531d378b287a4942a136395e4bd2a9a5 = L.marker(
[42.3539609, -71.1109653],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_0d92ff7d2ef246a49244c568d8a85c7e = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e64\u003c/div\u003e"});
marker_531d378b287a4942a136395e4bd2a9a5.setIcon(div_icon_0d92ff7d2ef246a49244c568d8a85c7e);
var popup_ad10d94c40464d73809d8492b82597b7 = L.popup({"maxWidth": "100%"});
var html_55061a9ce3184828a45a4c330326e7b7 = $(`<div id="html_55061a9ce3184828a45a4c330326e7b7" style="width: 100.0%; height: 100.0%;">42.3539609, -71.1109653</div>`)[0];
popup_ad10d94c40464d73809d8492b82597b7.setContent(html_55061a9ce3184828a45a4c330326e7b7);
marker_531d378b287a4942a136395e4bd2a9a5.bindPopup(popup_ad10d94c40464d73809d8492b82597b7)
;
var marker_afb928dc9a694cd589e3bcaeee025658 = L.marker(
[42.3504399, -71.1108926],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_e988e4181dde4ed58f7895d6eb2e6048 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e34\u003c/div\u003e"});
marker_afb928dc9a694cd589e3bcaeee025658.setIcon(div_icon_e988e4181dde4ed58f7895d6eb2e6048);
var popup_7e5908344a11401ca4e352ea3be154bd = L.popup({"maxWidth": "100%"});
var html_ca57662700dc45f9a55c23876e8aedaf = $(`<div id="html_ca57662700dc45f9a55c23876e8aedaf" style="width: 100.0%; height: 100.0%;">42.3504399, -71.1108926</div>`)[0];
popup_7e5908344a11401ca4e352ea3be154bd.setContent(html_ca57662700dc45f9a55c23876e8aedaf);
marker_afb928dc9a694cd589e3bcaeee025658.bindPopup(popup_7e5908344a11401ca4e352ea3be154bd)
;
var marker_f4a6d7c706144cd5a743d251accd2efe = L.marker(
[42.3632611, -71.1296873],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_fb8a3458c9ef474d9f01b5b8a6ca38dd = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e54\u003c/div\u003e"});
marker_f4a6d7c706144cd5a743d251accd2efe.setIcon(div_icon_fb8a3458c9ef474d9f01b5b8a6ca38dd);
var popup_50cc7606372f4df498c57f639e033f0e = L.popup({"maxWidth": "100%"});
var html_4c7b97cdb788405589e49d9c269884cb = $(`<div id="html_4c7b97cdb788405589e49d9c269884cb" style="width: 100.0%; height: 100.0%;">42.3632611, -71.1296873</div>`)[0];
popup_50cc7606372f4df498c57f639e033f0e.setContent(html_4c7b97cdb788405589e49d9c269884cb);
marker_f4a6d7c706144cd5a743d251accd2efe.bindPopup(popup_50cc7606372f4df498c57f639e033f0e)
;
var marker_6af313d22cc6426e88e7a35cae6631f8 = L.marker(
[42.369837, -71.112607],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_05f2c8afae434f6eab78e13d835c1eab = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e80\u003c/div\u003e"});
marker_6af313d22cc6426e88e7a35cae6631f8.setIcon(div_icon_05f2c8afae434f6eab78e13d835c1eab);
var popup_a7043d22fd9c4f6eb2fcc4f2f5906094 = L.popup({"maxWidth": "100%"});
var html_d3aa1abc36f94067a8630d299be991cd = $(`<div id="html_d3aa1abc36f94067a8630d299be991cd" style="width: 100.0%; height: 100.0%;">42.369837, -71.112607</div>`)[0];
popup_a7043d22fd9c4f6eb2fcc4f2f5906094.setContent(html_d3aa1abc36f94067a8630d299be991cd);
marker_6af313d22cc6426e88e7a35cae6631f8.bindPopup(popup_a7043d22fd9c4f6eb2fcc4f2f5906094)
;
var marker_20dcd625873d476ebadec9dbec02dc0a = L.marker(
[42.3297015, -71.0568123],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_558effcd40a9415a85005c370e273a34 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e96\u003c/div\u003e"});
marker_20dcd625873d476ebadec9dbec02dc0a.setIcon(div_icon_558effcd40a9415a85005c370e273a34);
var popup_2fd6d6a556d6479a80420810e9f796bc = L.popup({"maxWidth": "100%"});
var html_ed67ee7d0e3d4c049b86adacdc4323ee = $(`<div id="html_ed67ee7d0e3d4c049b86adacdc4323ee" style="width: 100.0%; height: 100.0%;">42.3297015, -71.0568123</div>`)[0];
popup_2fd6d6a556d6479a80420810e9f796bc.setContent(html_ed67ee7d0e3d4c049b86adacdc4323ee);
marker_20dcd625873d476ebadec9dbec02dc0a.bindPopup(popup_2fd6d6a556d6479a80420810e9f796bc)
;
var marker_0e3f149bd9394b9e9af28a5b2f2afc79 = L.marker(
[42.3524881, -71.0553466],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_b4c3fc2d2c2e4e2d84aebb0c00ceadc1 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e51\u003c/div\u003e"});
marker_0e3f149bd9394b9e9af28a5b2f2afc79.setIcon(div_icon_b4c3fc2d2c2e4e2d84aebb0c00ceadc1);
var popup_1e408816cfe840deb7b0c20ba760ec55 = L.popup({"maxWidth": "100%"});
var html_bee288caa05c4130bc8957b17e877ca0 = $(`<div id="html_bee288caa05c4130bc8957b17e877ca0" style="width: 100.0%; height: 100.0%;">42.3524881, -71.0553466</div>`)[0];
popup_1e408816cfe840deb7b0c20ba760ec55.setContent(html_bee288caa05c4130bc8957b17e877ca0);
marker_0e3f149bd9394b9e9af28a5b2f2afc79.bindPopup(popup_1e408816cfe840deb7b0c20ba760ec55)
;
var marker_7c190b59bc064870aec90cb8eeec99ee = L.marker(
[42.342193, -71.1212516],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_34f13c1f684642bc9a76ec0e453434d4 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e91\u003c/div\u003e"});
marker_7c190b59bc064870aec90cb8eeec99ee.setIcon(div_icon_34f13c1f684642bc9a76ec0e453434d4);
var popup_6432273ecada463ea39ac272b71a61bb = L.popup({"maxWidth": "100%"});
var html_2d8e695d63274a0d81b3e131e5b9590e = $(`<div id="html_2d8e695d63274a0d81b3e131e5b9590e" style="width: 100.0%; height: 100.0%;">42.342193, -71.1212516</div>`)[0];
popup_6432273ecada463ea39ac272b71a61bb.setContent(html_2d8e695d63274a0d81b3e131e5b9590e);
marker_7c190b59bc064870aec90cb8eeec99ee.bindPopup(popup_6432273ecada463ea39ac272b71a61bb)
;
var marker_27fb705f4b9a4e59829099448231ff2b = L.marker(
[42.3570628, -71.092537],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_e837bb4b96b54328a03d17e71f419544 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e87\u003c/div\u003e"});
marker_27fb705f4b9a4e59829099448231ff2b.setIcon(div_icon_e837bb4b96b54328a03d17e71f419544);
var popup_3e7b8daed3894e21a5a30f38db834cb3 = L.popup({"maxWidth": "100%"});
var html_3bb33c8594b0443c940a3217e4353a33 = $(`<div id="html_3bb33c8594b0443c940a3217e4353a33" style="width: 100.0%; height: 100.0%;">42.3570628, -71.092537</div>`)[0];
popup_3e7b8daed3894e21a5a30f38db834cb3.setContent(html_3bb33c8594b0443c940a3217e4353a33);
marker_27fb705f4b9a4e59829099448231ff2b.bindPopup(popup_3e7b8daed3894e21a5a30f38db834cb3)
;
var marker_0c38f3ac40ff44ac896ee0250b314b3c = L.marker(
[42.3624477, -71.0843118],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_56797fa82ae44f8e82ae8f3740bb1391 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e58\u003c/div\u003e"});
marker_0c38f3ac40ff44ac896ee0250b314b3c.setIcon(div_icon_56797fa82ae44f8e82ae8f3740bb1391);
var popup_ad6e81b0594f4145a257ffe6d67dcf39 = L.popup({"maxWidth": "100%"});
var html_c50441637b934508a8fb75aeef53a8e6 = $(`<div id="html_c50441637b934508a8fb75aeef53a8e6" style="width: 100.0%; height: 100.0%;">42.3624477, -71.0843118</div>`)[0];
popup_ad6e81b0594f4145a257ffe6d67dcf39.setContent(html_c50441637b934508a8fb75aeef53a8e6);
marker_0c38f3ac40ff44ac896ee0250b314b3c.bindPopup(popup_ad6e81b0594f4145a257ffe6d67dcf39)
;
var marker_6f531844e016432c8dade6d888cbb340 = L.marker(
[42.3597038, -71.0520451],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_413a0f176fbd4c4bb153a8d802b05460 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e21\u003c/div\u003e"});
marker_6f531844e016432c8dade6d888cbb340.setIcon(div_icon_413a0f176fbd4c4bb153a8d802b05460);
var popup_db07cdf42ef24f8fac7d3fc9273adc0d = L.popup({"maxWidth": "100%"});
var html_801f78de58ec4a7e8ea5dd12e11135a7 = $(`<div id="html_801f78de58ec4a7e8ea5dd12e11135a7" style="width: 100.0%; height: 100.0%;">42.3597038, -71.0520451</div>`)[0];
popup_db07cdf42ef24f8fac7d3fc9273adc0d.setContent(html_801f78de58ec4a7e8ea5dd12e11135a7);
marker_6f531844e016432c8dade6d888cbb340.bindPopup(popup_db07cdf42ef24f8fac7d3fc9273adc0d)
;
var marker_63859bb207ac42faa30540dab087fd56 = L.marker(
[42.3610239, -71.0715613],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_664e7375d50941f8b645a6fcd4436331 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e33\u003c/div\u003e"});
marker_63859bb207ac42faa30540dab087fd56.setIcon(div_icon_664e7375d50941f8b645a6fcd4436331);
var popup_5411a76625aa4a52ad951e7778aa9a33 = L.popup({"maxWidth": "100%"});
var html_d2b4957b46cb4252b5aedf51e3f7c537 = $(`<div id="html_d2b4957b46cb4252b5aedf51e3f7c537" style="width: 100.0%; height: 100.0%;">42.3610239, -71.0715613</div>`)[0];
popup_5411a76625aa4a52ad951e7778aa9a33.setContent(html_d2b4957b46cb4252b5aedf51e3f7c537);
marker_63859bb207ac42faa30540dab087fd56.bindPopup(popup_5411a76625aa4a52ad951e7778aa9a33)
;
var marker_15470eb96d9d4e1caff7d7520913a1c2 = L.marker(
[42.3622709, -71.1135298],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_8ea6e809184d40819bfdeede5ac7db6b = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e62\u003c/div\u003e"});
marker_15470eb96d9d4e1caff7d7520913a1c2.setIcon(div_icon_8ea6e809184d40819bfdeede5ac7db6b);
var popup_216bdf37510844d3b8f1f952aa62ac09 = L.popup({"maxWidth": "100%"});
var html_f1418ef286f64fbda6969b43051eba2f = $(`<div id="html_f1418ef286f64fbda6969b43051eba2f" style="width: 100.0%; height: 100.0%;">42.3622709, -71.1135298</div>`)[0];
popup_216bdf37510844d3b8f1f952aa62ac09.setContent(html_f1418ef286f64fbda6969b43051eba2f);
marker_15470eb96d9d4e1caff7d7520913a1c2.bindPopup(popup_216bdf37510844d3b8f1f952aa62ac09)
;
var marker_97f6f8e5c7ee4f18a6d7507eb0ac252c = L.marker(
[42.3742679, -71.1188142],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_d8f8c315630c4927ac544f4121fa78f9 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e60\u003c/div\u003e"});
marker_97f6f8e5c7ee4f18a6d7507eb0ac252c.setIcon(div_icon_d8f8c315630c4927ac544f4121fa78f9);
var popup_086588e8c7e24b9ea936ce9f9b1604a4 = L.popup({"maxWidth": "100%"});
var html_52f1ef8cce2743e789a0be5253ccbb89 = $(`<div id="html_52f1ef8cce2743e789a0be5253ccbb89" style="width: 100.0%; height: 100.0%;">42.3742679, -71.1188142</div>`)[0];
popup_086588e8c7e24b9ea936ce9f9b1604a4.setContent(html_52f1ef8cce2743e789a0be5253ccbb89);
marker_97f6f8e5c7ee4f18a6d7507eb0ac252c.bindPopup(popup_086588e8c7e24b9ea936ce9f9b1604a4)
;
var marker_2767dbc015c44797bd9de51269726479 = L.marker(
[42.3464752, -71.0909098],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_e3163d7c9af24f09a88f40e1d44ca3c7 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e78\u003c/div\u003e"});
marker_2767dbc015c44797bd9de51269726479.setIcon(div_icon_e3163d7c9af24f09a88f40e1d44ca3c7);
var popup_9123c4b89a4b45c49ac4c8b47d73e244 = L.popup({"maxWidth": "100%"});
var html_6e93d571dbd640b08fb0b010dad8c666 = $(`<div id="html_6e93d571dbd640b08fb0b010dad8c666" style="width: 100.0%; height: 100.0%;">42.3464752, -71.0909098</div>`)[0];
popup_9123c4b89a4b45c49ac4c8b47d73e244.setContent(html_6e93d571dbd640b08fb0b010dad8c666);
marker_2767dbc015c44797bd9de51269726479.bindPopup(popup_9123c4b89a4b45c49ac4c8b47d73e244)
;
var marker_b111e75a06fc4d138219401125e1a2b1 = L.marker(
[42.3448431, -71.1042418],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_87ab046296c74ac08d3c0764e6142fce = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e92\u003c/div\u003e"});
marker_b111e75a06fc4d138219401125e1a2b1.setIcon(div_icon_87ab046296c74ac08d3c0764e6142fce);
var popup_3fe1c6e76b3d4e85b7260c00b0ead10f = L.popup({"maxWidth": "100%"});
var html_eaf939a47c0f4cc0af104dc6a2d2a7cb = $(`<div id="html_eaf939a47c0f4cc0af104dc6a2d2a7cb" style="width: 100.0%; height: 100.0%;">42.3448431, -71.1042418</div>`)[0];
popup_3fe1c6e76b3d4e85b7260c00b0ead10f.setContent(html_eaf939a47c0f4cc0af104dc6a2d2a7cb);
marker_b111e75a06fc4d138219401125e1a2b1.bindPopup(popup_3fe1c6e76b3d4e85b7260c00b0ead10f)
;
var marker_7c3bc6af407f45d093e1d71038b1bdac = L.marker(
[42.3252094, -71.0749335],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_d40d033c62b64ed9bdab48800f7a6a9d = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e89\u003c/div\u003e"});
marker_7c3bc6af407f45d093e1d71038b1bdac.setIcon(div_icon_d40d033c62b64ed9bdab48800f7a6a9d);
var popup_2b611ebc7b8c40f48be7e88a27231202 = L.popup({"maxWidth": "100%"});
var html_f4c3bd3c65e34600a9cf75a8865b6a38 = $(`<div id="html_f4c3bd3c65e34600a9cf75a8865b6a38" style="width: 100.0%; height: 100.0%;">42.3252094, -71.0749335</div>`)[0];
popup_2b611ebc7b8c40f48be7e88a27231202.setContent(html_f4c3bd3c65e34600a9cf75a8865b6a38);
marker_7c3bc6af407f45d093e1d71038b1bdac.bindPopup(popup_2b611ebc7b8c40f48be7e88a27231202)
;
var marker_83750a2d40104776a26e030b972e016e = L.marker(
[42.3227638, -71.0999462],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_5614407b20bb439ab6b2e3c84a8d0601 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e50\u003c/div\u003e"});
marker_83750a2d40104776a26e030b972e016e.setIcon(div_icon_5614407b20bb439ab6b2e3c84a8d0601);
var popup_142c3cd5194d4cb48bee0186a92c3f9a = L.popup({"maxWidth": "100%"});
var html_a63a7fbb558f4b6e9318bafbf619270c = $(`<div id="html_a63a7fbb558f4b6e9318bafbf619270c" style="width: 100.0%; height: 100.0%;">42.3227638, -71.0999462</div>`)[0];
popup_142c3cd5194d4cb48bee0186a92c3f9a.setContent(html_a63a7fbb558f4b6e9318bafbf619270c);
marker_83750a2d40104776a26e030b972e016e.bindPopup(popup_142c3cd5194d4cb48bee0186a92c3f9a)
;
var marker_d2dae7cb9c524eb594cd3187de98079f = L.marker(
[42.379635, -71.096387],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_78c17242ad5347a7a479f99919bf9432 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e26\u003c/div\u003e"});
marker_d2dae7cb9c524eb594cd3187de98079f.setIcon(div_icon_78c17242ad5347a7a479f99919bf9432);
var popup_060d63d1862f4b3f9c26ca7475d3d327 = L.popup({"maxWidth": "100%"});
var html_f8dc2388796f40edb36c18ce8d6e4180 = $(`<div id="html_f8dc2388796f40edb36c18ce8d6e4180" style="width: 100.0%; height: 100.0%;">42.379635, -71.096387</div>`)[0];
popup_060d63d1862f4b3f9c26ca7475d3d327.setContent(html_f8dc2388796f40edb36c18ce8d6e4180);
marker_d2dae7cb9c524eb594cd3187de98079f.bindPopup(popup_060d63d1862f4b3f9c26ca7475d3d327)
;
var marker_f81e0055aa5b418d964a5b3061dd5bee = L.marker(
[42.3353723, -71.090063],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_a9baa5092dce4a899e613e2d9ed85e54 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e84\u003c/div\u003e"});
marker_f81e0055aa5b418d964a5b3061dd5bee.setIcon(div_icon_a9baa5092dce4a899e613e2d9ed85e54);
var popup_1c955b61d512425f9294690ff905f325 = L.popup({"maxWidth": "100%"});
var html_f1b777c60fa0439e989c0326c92602f5 = $(`<div id="html_f1b777c60fa0439e989c0326c92602f5" style="width: 100.0%; height: 100.0%;">42.3353723, -71.090063</div>`)[0];
popup_1c955b61d512425f9294690ff905f325.setContent(html_f1b777c60fa0439e989c0326c92602f5);
marker_f81e0055aa5b418d964a5b3061dd5bee.bindPopup(popup_1c955b61d512425f9294690ff905f325)
;
var marker_a2a03082c5f04084b3bfb4148e7e3c8f = L.marker(
[42.3326217, -71.0720415],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_5918d66f96904f3eace95670878d085a = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e67\u003c/div\u003e"});
marker_a2a03082c5f04084b3bfb4148e7e3c8f.setIcon(div_icon_5918d66f96904f3eace95670878d085a);
var popup_c320db42c574413a9ed48db4e8a83ff5 = L.popup({"maxWidth": "100%"});
var html_bba56f91fd9b45ca90bf7fbc93c90ec4 = $(`<div id="html_bba56f91fd9b45ca90bf7fbc93c90ec4" style="width: 100.0%; height: 100.0%;">42.3326217, -71.0720415</div>`)[0];
popup_c320db42c574413a9ed48db4e8a83ff5.setContent(html_bba56f91fd9b45ca90bf7fbc93c90ec4);
marker_a2a03082c5f04084b3bfb4148e7e3c8f.bindPopup(popup_c320db42c574413a9ed48db4e8a83ff5)
;
var marker_cdb6390b95964c1bb544cd40ef4c86a8 = L.marker(
[42.3655877, -71.1040004],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_afe87d72b752499eb235c4cf4096a583 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e77\u003c/div\u003e"});
marker_cdb6390b95964c1bb544cd40ef4c86a8.setIcon(div_icon_afe87d72b752499eb235c4cf4096a583);
var popup_bdb3e02153fe4753a12b99a6af1b5639 = L.popup({"maxWidth": "100%"});
var html_aded30a7845b4f958c58c444212d1b04 = $(`<div id="html_aded30a7845b4f958c58c444212d1b04" style="width: 100.0%; height: 100.0%;">42.3655877, -71.1040004</div>`)[0];
popup_bdb3e02153fe4753a12b99a6af1b5639.setContent(html_aded30a7845b4f958c58c444212d1b04);
marker_cdb6390b95964c1bb544cd40ef4c86a8.bindPopup(popup_bdb3e02153fe4753a12b99a6af1b5639)
;
var marker_69426c8c3bb64d47bd844d63474b6cce = L.marker(
[42.3525933, -71.0673168],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_e929fa6ab55d48889b1d557e52c4dd8b = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e79\u003c/div\u003e"});
marker_69426c8c3bb64d47bd844d63474b6cce.setIcon(div_icon_e929fa6ab55d48889b1d557e52c4dd8b);
var popup_0997d1fac4fd4c76bc50a5dc98cf82a4 = L.popup({"maxWidth": "100%"});
var html_cbd47d3daaf94adbafbdea98024d6477 = $(`<div id="html_cbd47d3daaf94adbafbdea98024d6477" style="width: 100.0%; height: 100.0%;">42.3525933, -71.0673168</div>`)[0];
popup_0997d1fac4fd4c76bc50a5dc98cf82a4.setContent(html_cbd47d3daaf94adbafbdea98024d6477);
marker_69426c8c3bb64d47bd844d63474b6cce.bindPopup(popup_0997d1fac4fd4c76bc50a5dc98cf82a4)
;
var marker_02e69c2a56d54e87b492eec3957269de = L.marker(
[42.3317919, -71.1134095],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_a17c3a91e0624c6ab6093a9a136964a2 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e65\u003c/div\u003e"});
marker_02e69c2a56d54e87b492eec3957269de.setIcon(div_icon_a17c3a91e0624c6ab6093a9a136964a2);
var popup_845626b32ff84b269ec3174349cd0dd0 = L.popup({"maxWidth": "100%"});
var html_7f722682dbb749d4abb90e276ae6c9b4 = $(`<div id="html_7f722682dbb749d4abb90e276ae6c9b4" style="width: 100.0%; height: 100.0%;">42.3317919, -71.1134095</div>`)[0];
popup_845626b32ff84b269ec3174349cd0dd0.setContent(html_7f722682dbb749d4abb90e276ae6c9b4);
marker_02e69c2a56d54e87b492eec3957269de.bindPopup(popup_845626b32ff84b269ec3174349cd0dd0)
;
var marker_2dc7a5150547444ba3a72cc4e8703116 = L.marker(
[42.3521151, -71.0897845],
{}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var div_icon_d035ee2cde4149dc92d76d1c03f06f26 = L.divIcon({"className": "empty", "html": "\u003cdiv style=\"border:1px solid green; text-align: center; vertical-align: middle; line-height: 25px; background-color: white; width: 25px; height: 25px; border-radius: 25px; font-family: sans-serif; color: green;\"\u003e75\u003c/div\u003e"});
marker_2dc7a5150547444ba3a72cc4e8703116.setIcon(div_icon_d035ee2cde4149dc92d76d1c03f06f26);
var popup_c391d34fdf724095a61547f98cd7ec55 = L.popup({"maxWidth": "100%"});
var html_0e9a217fcf1c405ca01f41114eed3a86 = $(`<div id="html_0e9a217fcf1c405ca01f41114eed3a86" style="width: 100.0%; height: 100.0%;">42.3521151, -71.0897845</div>`)[0];
popup_c391d34fdf724095a61547f98cd7ec55.setContent(html_0e9a217fcf1c405ca01f41114eed3a86);
marker_2dc7a5150547444ba3a72cc4e8703116.bindPopup(popup_c391d34fdf724095a61547f98cd7ec55)
;
var poly_line_a9af38d6fc664ad099806d382d619361 = L.polyline(
[[42.32276, -71.09995], [42.32277, -71.10013], [42.32278, -71.10027]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_b290eed7e0f0478dad49fa0e9f33308c = L.polyline(
[[42.32278, -71.10027], [42.32285, -71.10023], [42.32346, -71.09986], [42.32379, -71.09965], [42.32381, -71.09963], [42.32382, -71.09963]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_6e6292328b044ffbbc4f19ad9d9ec2fd = L.polyline(
[[42.32382, -71.09963], [42.32384, -71.09961], [42.32386, -71.09959], [42.32388, -71.09956], [42.324, -71.09933], [42.32409, -71.09914], [42.32414, -71.09907], [42.32417, -71.09902], [42.32418, -71.099], [42.32421, -71.09897], [42.32427, -71.0989], [42.3243, -71.09887], [42.32433, -71.09884], [42.32436, -71.09882], [42.32439, -71.09879], [42.32444, -71.09877], [42.32451, -71.09873], [42.32491, -71.09854], [42.32495, -71.09853], [42.32504, -71.09851], [42.32569, -71.09828], [42.32596, -71.09819], [42.32624, -71.0981], [42.32649, -71.09802], [42.32666, -71.09796], [42.32671, -71.09794], [42.32716, -71.09781], [42.32736, -71.09772], [42.32742, -71.0977], [42.32753, -71.09765], [42.32759, -71.09762], [42.32764, -71.09759], [42.32769, -71.09755], [42.32779, -71.09748], [42.32795, -71.09739], [42.32817, -71.09728], [42.32819, -71.09726], [42.32825, -71.09723], [42.32829, -71.09721], [42.32874, -71.09698], [42.3288, -71.09695], [42.32883, -71.09694], [42.32891, -71.0969], [42.32904, -71.09684], [42.32917, -71.09676], [42.32931, -71.09667], [42.32936, -71.09665], [42.32977, -71.09633], [42.32992, -71.09621], [42.33005, -71.09611], [42.33024, -71.09599], [42.33028, -71.09597], [42.33043, -71.09584], [42.33073, -71.09549], [42.33088, -71.09533], [42.33093, -71.09528], [42.33096, -71.09525], [42.33104, -71.09518], [42.33113, -71.09509], [42.33122, -71.095], [42.33136, -71.09481], [42.33146, -71.0947]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_af21f2780741437da9da6dc6cb1ba603 = L.polyline(
[[42.33146, -71.0947], [42.33144, -71.09458], [42.33142, -71.0944]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_37aa561c426240229708b2aec9c9a75f = L.polyline(
[[42.33142, -71.0944], [42.33135, -71.09393], [42.33134, -71.09379], [42.33133, -71.09364], [42.33131, -71.09345], [42.3313, -71.09333], [42.33129, -71.0929], [42.33128, -71.09265], [42.33127, -71.09203], [42.33126, -71.09192], [42.33125, -71.09144], [42.33125, -71.09143], [42.33123, -71.09116], [42.33121, -71.0909], [42.33118, -71.09065], [42.33114, -71.09032], [42.33112, -71.09018], [42.33107, -71.0899], [42.33104, -71.08979], [42.33102, -71.0897], [42.33097, -71.08948], [42.33092, -71.08926], [42.33085, -71.08899], [42.33081, -71.08886], [42.33079, -71.08879], [42.33063, -71.08827], [42.33052, -71.08798], [42.33043, -71.08771], [42.33035, -71.08765], [42.33033, -71.08763], [42.33002, -71.08705], [42.32965, -71.08638], [42.32944, -71.086], [42.32936, -71.08589], [42.32916, -71.08558], [42.32911, -71.08551], [42.3291, -71.08549], [42.32896, -71.0853], [42.32887, -71.08516]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_d06ab53893054809b2ea33da7ce1e931 = L.polyline(
[[42.32887, -71.08516], [42.3288, -71.08486], [42.32879, -71.08483], [42.32878, -71.08479], [42.32868, -71.08411], [42.32866, -71.08397], [42.32864, -71.0839], [42.32863, -71.0838], [42.32862, -71.0837], [42.32861, -71.08358], [42.3286, -71.08343], [42.32865, -71.08325], [42.32861, -71.08275], [42.32855, -71.08226], [42.32854, -71.08217], [42.32851, -71.08191], [42.32848, -71.08153], [42.32849, -71.08134], [42.32849, -71.08131], [42.3285, -71.0809], [42.32851, -71.08076], [42.32852, -71.08046], [42.32852, -71.08014], [42.32852, -71.07996], [42.32852, -71.07969], [42.32852, -71.07945], [42.32852, -71.07929], [42.32851, -71.07918], [42.3285, -71.07911], [42.32848, -71.07906], [42.32845, -71.07895], [42.32839, -71.0788], [42.32828, -71.07852], [42.32821, -71.07835], [42.32813, -71.07816], [42.32809, -71.07808], [42.32805, -71.07799], [42.328, -71.0779], [42.32793, -71.07777], [42.32777, -71.07752], [42.32771, -71.07743], [42.32745, -71.07707], [42.32711, -71.07664], [42.32675, -71.07618], [42.32663, -71.07601], [42.32656, -71.07592], [42.32645, -71.07577], [42.3261, -71.07535], [42.32592, -71.07526], [42.32581, -71.07519], [42.32566, -71.07512], [42.32556, -71.07508], [42.32546, -71.07504], [42.32532, -71.07498], [42.32521, -71.07493]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_e0dc508c1be54f81b1ac926d7ba1114f = L.polyline(
[[42.32521, -71.07493], [42.32532, -71.07498], [42.32546, -71.07504], [42.32556, -71.07508], [42.32566, -71.07512], [42.32581, -71.07519], [42.32592, -71.07526], [42.3261, -71.07535], [42.32645, -71.07577], [42.32656, -71.07592], [42.32663, -71.07601], [42.32675, -71.07618], [42.32711, -71.07664], [42.32745, -71.07707], [42.32771, -71.07743], [42.32777, -71.07752], [42.32793, -71.07777], [42.328, -71.0779], [42.32805, -71.07799], [42.32809, -71.07808], [42.32813, -71.07816], [42.32821, -71.07835], [42.32828, -71.07852], [42.32839, -71.0788], [42.32845, -71.07895], [42.32848, -71.07906], [42.3285, -71.07911], [42.32851, -71.07918], [42.32852, -71.07929], [42.32852, -71.07945], [42.32852, -71.07969], [42.32852, -71.07996], [42.32852, -71.08014], [42.32852, -71.08046], [42.32851, -71.08076], [42.3285, -71.0809], [42.32849, -71.08131], [42.32849, -71.08134], [42.32848, -71.08153], [42.32851, -71.08191], [42.32854, -71.08217], [42.32855, -71.08226], [42.32861, -71.08275], [42.32865, -71.08325], [42.32868, -71.08348], [42.32876, -71.08407], [42.32881, -71.0844], [42.32884, -71.08456], [42.32888, -71.08483], [42.3289, -71.08492], [42.32895, -71.08506]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_f7abc608a1a14a099856b1ffc8799bf1 = L.polyline(
[[42.32895, -71.08506], [42.32887, -71.08516], [42.32874, -71.08546], [42.32873, -71.08548], [42.32871, -71.08555], [42.32864, -71.08573], [42.32847, -71.08612], [42.32845, -71.08617], [42.32836, -71.08638], [42.3283, -71.08648], [42.32825, -71.08658], [42.32822, -71.08662], [42.32818, -71.08667], [42.32813, -71.08672], [42.32809, -71.08677], [42.32804, -71.08682], [42.32799, -71.08686], [42.32793, -71.08691], [42.32789, -71.08693], [42.32785, -71.08696], [42.32776, -71.08701], [42.32714, -71.08728], [42.32663, -71.08751], [42.32652, -71.08756], [42.32617, -71.0877], [42.32571, -71.0879], [42.32554, -71.08797], [42.32538, -71.08804], [42.32516, -71.08814], [42.3247, -71.08834], [42.32463, -71.08839], [42.3245, -71.0885], [42.32419, -71.08878], [42.32399, -71.08897], [42.32379, -71.08916], [42.32363, -71.08931], [42.3236, -71.08933], [42.32353, -71.08941], [42.32344, -71.08953], [42.32336, -71.08964], [42.32311, -71.08997], [42.32298, -71.09015], [42.32288, -71.09029], [42.32252, -71.09077], [42.32241, -71.09092], [42.32229, -71.0911], [42.32204, -71.09144], [42.32198, -71.09151], [42.32183, -71.09172], [42.32167, -71.09194], [42.32156, -71.09207], [42.32146, -71.09222], [42.32141, -71.09228], [42.32129, -71.09245], [42.32117, -71.09261], [42.32117, -71.09263], [42.32101, -71.09285], [42.32094, -71.09295], [42.32092, -71.09297], [42.3208, -71.09314]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_6e33892593a0405cbd9319a846a06080 = L.polyline(
[[42.3208, -71.09314], [42.32089, -71.09328], [42.32091, -71.09332], [42.32102, -71.09352], [42.32124, -71.09391], [42.32131, -71.09405], [42.32144, -71.09428], [42.32156, -71.09449], [42.32178, -71.09488], [42.32189, -71.09507], [42.32191, -71.0951], [42.32197, -71.09522], [42.32201, -71.09528], [42.32206, -71.09534]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_28f79b1bfc094cae89a07b4f7d22602a = L.polyline(
[[42.32206, -71.09534], [42.32203, -71.09544], [42.32201, -71.09557], [42.32196, -71.09578], [42.32193, -71.09595], [42.3219, -71.09617], [42.32189, -71.09621], [42.32189, -71.09627], [42.32189, -71.09632], [42.32189, -71.09638], [42.32189, -71.09644], [42.3219, -71.09648], [42.3219, -71.09653], [42.32191, -71.09656], [42.32192, -71.09659], [42.32193, -71.09662], [42.32205, -71.09697], [42.32236, -71.09788], [42.32248, -71.09822], [42.3225, -71.09829], [42.32255, -71.09838], [42.32261, -71.09857]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_60c0fa93d09c4d168228d7a4044a0a4a = L.polyline(
[[42.32261, -71.09857], [42.32264, -71.09869], [42.32269, -71.09913], [42.3227, -71.09923], [42.32274, -71.09961], [42.32274, -71.09971], [42.32275, -71.09987], [42.32276, -71.09995]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_9be4d31000d141b9a6626c6581891a7d = L.polyline(
[[42.31007, -71.10755], [42.31004, -71.10746]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_12e290461d864151b41e859059731229 = L.polyline(
[[42.31004, -71.10746], [42.31052, -71.10711], [42.31055, -71.10708], [42.31057, -71.10708], [42.31058, -71.10707], [42.31059, -71.10707], [42.3106, -71.10707], [42.31061, -71.10707], [42.31062, -71.10706], [42.31063, -71.10706], [42.31064, -71.10705], [42.31107, -71.10679], [42.31118, -71.10673], [42.31151, -71.10654], [42.31152, -71.10653], [42.31167, -71.10644], [42.312, -71.10624], [42.31217, -71.10614], [42.31219, -71.10613], [42.3127, -71.10584], [42.31289, -71.10579], [42.31306, -71.10575], [42.31307, -71.10575], [42.31316, -71.10571], [42.31324, -71.10567], [42.31327, -71.10566], [42.31341, -71.10558], [42.31341, -71.10557], [42.31348, -71.10553], [42.31354, -71.10549], [42.31365, -71.10545], [42.31374, -71.10542], [42.3138, -71.10539], [42.31399, -71.10534], [42.31422, -71.1053], [42.31423, -71.10529], [42.31425, -71.10529], [42.31427, -71.1053], [42.31429, -71.1053], [42.3143, -71.1053], [42.31432, -71.10531], [42.31434, -71.10533], [42.31438, -71.10537], [42.31452, -71.10553], [42.31455, -71.10556], [42.31456, -71.10557], [42.31457, -71.10557], [42.31458, -71.10558], [42.31459, -71.10558], [42.3146, -71.10558], [42.31462, -71.10557], [42.31463, -71.10557], [42.31464, -71.10553], [42.31467, -71.10552], [42.31481, -71.10548]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_768ad90543014690916fd10b15c9fe95 = L.polyline(
[[42.31481, -71.10548], [42.31483, -71.10544], [42.31498, -71.1054], [42.31511, -71.10536], [42.31529, -71.10529], [42.31535, -71.10527], [42.31546, -71.10523], [42.31556, -71.1052], [42.31564, -71.10518], [42.31577, -71.10515], [42.31583, -71.10514], [42.31589, -71.10511], [42.31598, -71.10508], [42.31616, -71.105], [42.3164, -71.10488], [42.31647, -71.10486], [42.31657, -71.10483], [42.31682, -71.10481], [42.31702, -71.10479], [42.3172, -71.10468], [42.31737, -71.10458], [42.31748, -71.1045], [42.31756, -71.10445], [42.31764, -71.10439], [42.31775, -71.10428], [42.31779, -71.10424], [42.3179, -71.10417], [42.31795, -71.10413], [42.31857, -71.10366], [42.3186, -71.10364], [42.31895, -71.10336], [42.3191, -71.10326], [42.31924, -71.10316], [42.31936, -71.10305], [42.31998, -71.10255], [42.32033, -71.10227], [42.32093, -71.10173], [42.32134, -71.10135], [42.32152, -71.10121], [42.32163, -71.1011], [42.3219, -71.10088], [42.32192, -71.10087], [42.32194, -71.10085], [42.32206, -71.10077], [42.3221, -71.10073], [42.32217, -71.10068], [42.32226, -71.10062], [42.32233, -71.10057], [42.32237, -71.10054], [42.32242, -71.10052], [42.32246, -71.1005], [42.32249, -71.10049], [42.32255, -71.10046], [42.32273, -71.10038], [42.32279, -71.10036]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_2291fa10591e46c1afaa8f1944ea0156 = L.polyline(
[[42.32279, -71.10036], [42.32278, -71.10027], [42.32277, -71.10013], [42.32276, -71.09995]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_55f4e8a1f0ea46358a4916f1374d36f5 = L.polyline(
[[42.32276, -71.09995], [42.32277, -71.10013], [42.32278, -71.10027], [42.32279, -71.10036]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_6f99bf9ab20f403a879426956c653f96 = L.polyline(
[[42.32279, -71.10036], [42.32273, -71.10038], [42.32255, -71.10046], [42.32249, -71.10049], [42.32246, -71.1005], [42.32242, -71.10052], [42.32237, -71.10054], [42.32233, -71.10057], [42.32226, -71.10062], [42.32217, -71.10068], [42.3221, -71.10073], [42.32206, -71.10077], [42.32194, -71.10085], [42.32192, -71.10087], [42.3219, -71.10088], [42.32163, -71.1011], [42.32152, -71.10121], [42.32134, -71.10135], [42.32093, -71.10173], [42.32033, -71.10227], [42.31998, -71.10255], [42.31936, -71.10305], [42.31924, -71.10316], [42.3191, -71.10326], [42.31895, -71.10336], [42.3186, -71.10364], [42.31857, -71.10366], [42.31795, -71.10413], [42.3179, -71.10417], [42.31779, -71.10424], [42.31775, -71.10428], [42.31764, -71.10439], [42.31756, -71.10445], [42.31748, -71.1045], [42.31737, -71.10458], [42.3172, -71.10468], [42.31702, -71.10479], [42.31682, -71.10481], [42.31657, -71.10483], [42.31647, -71.10486], [42.3164, -71.10488], [42.31616, -71.105], [42.31598, -71.10508], [42.31589, -71.10511], [42.31583, -71.10514], [42.31577, -71.10515], [42.31564, -71.10518], [42.31556, -71.1052], [42.31546, -71.10523], [42.31535, -71.10527], [42.31529, -71.10529], [42.31511, -71.10536], [42.31498, -71.1054], [42.31483, -71.10544], [42.31481, -71.10548], [42.31467, -71.10552], [42.31464, -71.10553]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_8ab1e7a7b1af4876a70c5bdf8fd89fab = L.polyline(
[[42.31464, -71.10553], [42.31463, -71.10557], [42.31462, -71.10557], [42.3146, -71.10558], [42.31459, -71.10558], [42.31458, -71.10558], [42.31457, -71.10557], [42.31456, -71.10557], [42.31455, -71.10556], [42.31452, -71.10553]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_9571677a89f34e9a8bf9078a42dc75d7 = L.polyline(
[[42.31452, -71.10553], [42.31438, -71.10537], [42.31434, -71.10533], [42.31432, -71.10531], [42.3143, -71.1053], [42.31429, -71.1053], [42.31427, -71.1053], [42.31425, -71.10529], [42.31423, -71.10529], [42.31422, -71.1053], [42.31399, -71.10534], [42.3138, -71.10539], [42.31374, -71.10542], [42.31365, -71.10545], [42.31354, -71.10549], [42.31348, -71.10553], [42.31341, -71.10557], [42.31341, -71.10558], [42.31327, -71.10566], [42.31324, -71.10567], [42.31316, -71.10571], [42.31307, -71.10575], [42.31306, -71.10575], [42.31289, -71.10579], [42.3127, -71.10584], [42.31219, -71.10613], [42.31217, -71.10614], [42.312, -71.10624], [42.31167, -71.10644], [42.31152, -71.10653], [42.31151, -71.10654], [42.31118, -71.10673], [42.31107, -71.10679], [42.31064, -71.10705], [42.31063, -71.10706], [42.31062, -71.10706], [42.31061, -71.10707], [42.3106, -71.10707], [42.31059, -71.10707], [42.31058, -71.10707], [42.31057, -71.10708], [42.31055, -71.10708], [42.31052, -71.10711], [42.31004, -71.10746]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_b3feb945973c4efb9427092181ffcb67 = L.polyline(
[[42.31004, -71.10746], [42.31007, -71.10755]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_3a4fe083871f4132b2addf172b2166be = L.polyline(
[[42.37372, -71.10083], [42.37375, -71.10099], [42.37377, -71.1011], [42.37379, -71.10125], [42.37384, -71.10167], [42.37389, -71.1021], [42.37391, -71.10225], [42.37394, -71.10249], [42.37398, -71.10275], [42.37402, -71.10305], [42.37407, -71.10344], [42.37415, -71.10408], [42.37418, -71.10433], [42.37423, -71.10473], [42.37423, -71.10476], [42.37424, -71.1048], [42.37428, -71.10514], [42.37431, -71.10541], [42.37438, -71.10591], [42.3744, -71.10609], [42.37452, -71.10703], [42.37456, -71.10729], [42.37457, -71.10743], [42.37463, -71.10788], [42.37469, -71.10834], [42.37476, -71.10883], [42.37478, -71.10902], [42.37491, -71.11005], [42.37494, -71.11023], [42.37495, -71.11034], [42.37505, -71.11109], [42.37506, -71.11119], [42.37513, -71.11173], [42.3752, -71.11224], [42.37526, -71.11272], [42.37527, -71.11281], [42.3753, -71.11304], [42.37533, -71.11327], [42.37538, -71.11342], [42.3754, -71.11363], [42.37547, -71.11409], [42.3755, -71.11432]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_7083352a4e1046b49bd7a397f3e2019d = L.polyline(
[[42.3755, -71.11432], [42.37556, -71.11434], [42.37557, -71.11435], [42.37557, -71.11436], [42.37558, -71.11436], [42.37558, -71.11437], [42.37559, -71.11438], [42.37559, -71.11439], [42.3756, -71.1144], [42.3756, -71.11441], [42.37561, -71.11442], [42.37562, -71.11442], [42.37563, -71.11443], [42.37565, -71.11444]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_6b8dae4154d04ffb81a98a21647b232a = L.polyline(
[[42.37565, -71.11444], [42.37567, -71.11448], [42.37567, -71.11449], [42.37567, -71.1145], [42.37567, -71.11451], [42.37567, -71.11453], [42.37566, -71.11454], [42.37566, -71.11455], [42.37565, -71.11459], [42.37565, -71.11461], [42.37565, -71.11464], [42.37565, -71.11467], [42.37565, -71.1147], [42.37566, -71.11472], [42.37567, -71.11475], [42.37568, -71.11481], [42.37569, -71.11495], [42.37572, -71.11525], [42.37573, -71.11534], [42.37575, -71.11562], [42.37575, -71.11564], [42.37579, -71.11588], [42.37579, -71.1159], [42.37585, -71.11627], [42.3759, -71.1165], [42.37592, -71.11661], [42.37595, -71.1168]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_2cfac04afa9d4b838ec5a78756e207e7 = L.polyline(
[[42.37595, -71.1168], [42.37591, -71.11701], [42.37589, -71.11711], [42.37586, -71.11721], [42.37585, -71.11729], [42.37581, -71.11748], [42.37582, -71.11755], [42.37583, -71.11761], [42.37583, -71.11769], [42.37583, -71.11776], [42.37582, -71.11783], [42.37579, -71.11795], [42.37577, -71.11804], [42.37576, -71.11808], [42.37575, -71.11811], [42.37574, -71.11814], [42.37572, -71.11819], [42.37568, -71.11824], [42.37566, -71.11826], [42.37565, -71.11827], [42.37562, -71.11829], [42.3756, -71.11831], [42.37558, -71.11832], [42.37555, -71.11834], [42.37531, -71.1184], [42.37503, -71.11847], [42.37479, -71.11854], [42.37469, -71.11857], [42.37461, -71.11859]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_263c0b7a72af487eba2a6c95b14df405 = L.polyline(
[[42.37461, -71.11859], [42.37461, -71.1187], [42.37459, -71.1189]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_a0e1263339ad4c4fab4f14442188ff4c = L.polyline(
[[42.37459, -71.1189], [42.37454, -71.11888], [42.37453, -71.11887], [42.37445, -71.11886], [42.37427, -71.11882]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_5a6e5cba27b54976a22325f32480ec17 = L.polyline(
[[42.37427, -71.11882], [42.37439, -71.11875], [42.37442, -71.11874], [42.37455, -71.11871], [42.37461, -71.1187], [42.37475, -71.11865], [42.37485, -71.11862], [42.37493, -71.11861], [42.37498, -71.1186], [42.37505, -71.11858], [42.37517, -71.11856], [42.37551, -71.11848]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_a844d054529a46bebd671ea3d8f67e68 = L.polyline(
[[42.37551, -71.11848], [42.3756, -71.11841], [42.37565, -71.11837], [42.3757, -71.11833], [42.37574, -71.11829], [42.37576, -71.11827], [42.37579, -71.11823], [42.37584, -71.11816], [42.37586, -71.11812], [42.37588, -71.11807], [42.3759, -71.11803], [42.37591, -71.11799], [42.37592, -71.11793], [42.37593, -71.11789], [42.37593, -71.11788], [42.37594, -71.11782], [42.37594, -71.11777], [42.37593, -71.11765], [42.37591, -71.11753], [42.37589, -71.11744], [42.37589, -71.11743], [42.37586, -71.1173], [42.37586, -71.11726], [42.37581, -71.11707], [42.37578, -71.11689], [42.37577, -71.11683], [42.37573, -71.11667], [42.37572, -71.1166], [42.37572, -71.11658], [42.37571, -71.11658], [42.37567, -71.11638], [42.37567, -71.11636], [42.37566, -71.11633], [42.37564, -71.1162], [42.37562, -71.11613], [42.37559, -71.11592]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_16ccddc1abae4270ab7ecf1c2c5dc684 = L.polyline(
[[42.37559, -71.11592], [42.37559, -71.11581], [42.37557, -71.1156], [42.37555, -71.11541], [42.37553, -71.11529], [42.37551, -71.11496], [42.37544, -71.11434], [42.37541, -71.11411], [42.37536, -71.11365], [42.37534, -71.11343], [42.37533, -71.11327], [42.3753, -71.11304], [42.37527, -71.11281], [42.37526, -71.11272], [42.3752, -71.11224], [42.37513, -71.11173], [42.37506, -71.11119], [42.37505, -71.11109], [42.37495, -71.11034], [42.37494, -71.11023], [42.37491, -71.11005], [42.37478, -71.10902], [42.37476, -71.10883], [42.37469, -71.10834], [42.37463, -71.10788], [42.37457, -71.10743], [42.37456, -71.10729], [42.37452, -71.10703], [42.3744, -71.10609], [42.37438, -71.10591], [42.37431, -71.10541], [42.37428, -71.10514], [42.37424, -71.1048], [42.37423, -71.10476], [42.37423, -71.10473], [42.37418, -71.10433], [42.37415, -71.10408], [42.37407, -71.10344], [42.37402, -71.10305], [42.37398, -71.10275], [42.37394, -71.10249], [42.37391, -71.10225], [42.37389, -71.1021], [42.37384, -71.10167], [42.37379, -71.10125], [42.37377, -71.1011], [42.37375, -71.10099], [42.37372, -71.10083]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_63014d32a1f2429da0418191b141f69e = L.polyline(
[[42.37427, -71.11882], [42.37439, -71.11875], [42.37442, -71.11874], [42.37455, -71.11871], [42.37461, -71.1187], [42.37475, -71.11865], [42.37485, -71.11862], [42.37493, -71.11861], [42.37498, -71.1186]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_de10b87655e747d4b45b4874b063e911 = L.polyline(
[[42.37498, -71.1186], [42.37503, -71.11847]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_225612adde514bc8bb26a5cffd8bd2e5 = L.polyline(
[[42.37503, -71.11847], [42.37531, -71.1184], [42.37555, -71.11834], [42.37558, -71.11832], [42.3756, -71.11831], [42.37562, -71.11829], [42.37565, -71.11827], [42.37566, -71.11826], [42.37568, -71.11824], [42.37572, -71.11819], [42.37574, -71.11814], [42.37575, -71.11811], [42.37576, -71.11808], [42.37577, -71.11804], [42.37579, -71.11795], [42.37582, -71.11783], [42.37583, -71.11776], [42.37583, -71.11769], [42.37583, -71.11761], [42.37582, -71.11755], [42.37581, -71.11748]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_97b0ee66987f4cd0b5732a06b874f23c = L.polyline(
[[42.37581, -71.11748], [42.37585, -71.11729], [42.37586, -71.11721], [42.37589, -71.11711], [42.37591, -71.11701], [42.37595, -71.1168], [42.37592, -71.11661], [42.3759, -71.1165], [42.37585, -71.11627]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_8b9b85c6596b46dd92d47570d6605e8a = L.polyline(
[[42.37585, -71.11627], [42.37589, -71.11625], [42.37591, -71.11623], [42.37592, -71.11621], [42.37596, -71.11614], [42.376, -71.11606], [42.37614, -71.11584], [42.37616, -71.11581], [42.37617, -71.1158], [42.3762, -71.11577], [42.37631, -71.11568]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_490a9870c002465ab79dcdf568fe72f8 = L.polyline(
[[42.37631, -71.11568], [42.37631, -71.11567], [42.37631, -71.11565], [42.37631, -71.11563], [42.37632, -71.11557], [42.37642, -71.1151], [42.37649, -71.11476], [42.37655, -71.11448], [42.37659, -71.11427], [42.37663, -71.11409], [42.37668, -71.11387], [42.37669, -71.1138], [42.37671, -71.11371], [42.37687, -71.113], [42.37694, -71.11265], [42.37698, -71.11244], [42.377, -71.11234], [42.37706, -71.11207], [42.37716, -71.11157], [42.37718, -71.11148], [42.37726, -71.11112], [42.37737, -71.1106], [42.3774, -71.11045], [42.37747, -71.1101], [42.37755, -71.10976], [42.37763, -71.1094], [42.37769, -71.10911], [42.37777, -71.10872], [42.37789, -71.10814], [42.37797, -71.10782], [42.37799, -71.1077], [42.37809, -71.10727]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_8c6f1787c1c34226a27b048955f02df0 = L.polyline(
[[42.37809, -71.10727], [42.37829, -71.10639], [42.37842, -71.10576], [42.37854, -71.10523], [42.37854, -71.1052], [42.37868, -71.10466], [42.37883, -71.10407], [42.37884, -71.10405], [42.37898, -71.10347], [42.379, -71.10341], [42.37902, -71.10334], [42.37917, -71.10281], [42.37921, -71.10266], [42.37924, -71.10249], [42.37927, -71.10234], [42.3793, -71.10214], [42.37942, -71.10144], [42.37943, -71.10125], [42.37943, -71.10109], [42.37944, -71.10104], [42.37944, -71.10095], [42.37944, -71.1008], [42.37943, -71.10064], [42.37942, -71.10052], [42.37941, -71.10043], [42.3794, -71.10035], [42.37937, -71.10015], [42.37935, -71.10007], [42.37934, -71.09999], [42.37933, -71.09984], [42.37932, -71.09969], [42.37932, -71.09953], [42.37932, -71.09949], [42.37933, -71.09936], [42.37936, -71.09912], [42.37939, -71.09886], [42.37942, -71.09862], [42.37942, -71.0986], [42.37944, -71.09838], [42.37949, -71.09799], [42.37951, -71.09769], [42.37954, -71.09727], [42.37956, -71.0971], [42.37958, -71.09697], [42.37959, -71.09683], [42.37963, -71.09645]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_7809816848614f18b1f1575f717e6b3b = L.polyline(
[[42.37963, -71.09645], [42.37964, -71.09639]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_cc00bcf4592c4b08b7a0d73f0392c32e = L.polyline(
[[42.37964, -71.09639], [42.37963, -71.09645]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_635e1573cb744fa381ec4405e0f98cdb = L.polyline(
[[42.37963, -71.09645], [42.37959, -71.09683], [42.37958, -71.09697], [42.37956, -71.0971], [42.37954, -71.09727], [42.37951, -71.09769], [42.37949, -71.09799], [42.37944, -71.09838], [42.37942, -71.0986], [42.37942, -71.09862], [42.37939, -71.09886], [42.37936, -71.09912], [42.37933, -71.09936], [42.37932, -71.09949], [42.37932, -71.09953], [42.37932, -71.09969], [42.37933, -71.09984], [42.37934, -71.09999], [42.37935, -71.10007], [42.37937, -71.10015], [42.3794, -71.10035], [42.37941, -71.10043], [42.37942, -71.10052], [42.37943, -71.10064], [42.37944, -71.1008], [42.37944, -71.10095], [42.37944, -71.10104], [42.37943, -71.10109], [42.37943, -71.10125], [42.37942, -71.10144], [42.3793, -71.10214], [42.37927, -71.10234], [42.37924, -71.10249], [42.37921, -71.10266], [42.37917, -71.10281], [42.37902, -71.10334], [42.379, -71.10341], [42.37898, -71.10347], [42.37884, -71.10405], [42.37883, -71.10407], [42.37868, -71.10466], [42.37854, -71.1052], [42.37854, -71.10523], [42.37842, -71.10576], [42.37829, -71.10639], [42.37809, -71.10727]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_f34e4b1a9d184048976b05fe271cc43e = L.polyline(
[[42.37809, -71.10727], [42.37799, -71.1077], [42.37797, -71.10782], [42.37789, -71.10814], [42.37777, -71.10872], [42.37769, -71.10911], [42.37763, -71.1094], [42.37755, -71.10976], [42.37747, -71.1101], [42.3774, -71.11045], [42.37737, -71.1106], [42.37726, -71.11112], [42.37718, -71.11148], [42.37716, -71.11157], [42.37706, -71.11207], [42.377, -71.11234], [42.37698, -71.11244], [42.37694, -71.11265], [42.37687, -71.113], [42.37671, -71.11371], [42.37669, -71.1138], [42.37668, -71.11387], [42.37663, -71.11409], [42.37659, -71.11427], [42.37655, -71.11448], [42.37649, -71.11476], [42.37642, -71.1151], [42.37632, -71.11557], [42.37631, -71.11563], [42.37631, -71.11565], [42.37631, -71.11567], [42.37631, -71.11568]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_07a1aaac79144950a4fbd8bfcb5ad174 = L.polyline(
[[42.37631, -71.11568], [42.3762, -71.11577], [42.37617, -71.1158], [42.37616, -71.11581], [42.37614, -71.11584], [42.376, -71.11606], [42.37596, -71.11614], [42.37592, -71.11621], [42.37591, -71.11623], [42.37589, -71.11625], [42.37585, -71.11627]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_da90300715ee463485a80c0767ef53c4 = L.polyline(
[[42.37585, -71.11627], [42.3759, -71.1165], [42.37592, -71.11661], [42.37595, -71.1168]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_8fffd4814fd14b7783bec39bc31957ca = L.polyline(
[[42.37595, -71.1168], [42.37591, -71.11701], [42.37589, -71.11711], [42.37586, -71.11721], [42.37585, -71.11729], [42.37581, -71.11748], [42.37582, -71.11755], [42.37583, -71.11761], [42.37583, -71.11769], [42.37583, -71.11776], [42.37582, -71.11783], [42.37579, -71.11795], [42.37577, -71.11804], [42.37576, -71.11808], [42.37575, -71.11811], [42.37574, -71.11814], [42.37572, -71.11819], [42.37568, -71.11824], [42.37566, -71.11826], [42.37565, -71.11827], [42.37562, -71.11829], [42.3756, -71.11831], [42.37558, -71.11832], [42.37555, -71.11834], [42.37531, -71.1184], [42.37503, -71.11847], [42.37479, -71.11854], [42.37469, -71.11857], [42.37461, -71.11859]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_5e055123fcbc47babab79fc70acc180d = L.polyline(
[[42.37461, -71.11859], [42.37461, -71.1187], [42.37459, -71.1189]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_7ee36a1a7efc4246840f240cae21bae5 = L.polyline(
[[42.37459, -71.1189], [42.37454, -71.11888], [42.37453, -71.11887], [42.37445, -71.11886], [42.37427, -71.11882]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_d55cb5bc7e384ad7bc72a26279303514 = L.polyline(
[[42.37964, -71.09639], [42.37963, -71.09645]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_6d3cdff9b47b400898e6da9041d486c0 = L.polyline(
[[42.37963, -71.09645], [42.37954, -71.09637], [42.37868, -71.09611], [42.37828, -71.09598], [42.37818, -71.09595], [42.37803, -71.0959], [42.37787, -71.09586], [42.37777, -71.09583], [42.37774, -71.09582], [42.37766, -71.0958], [42.37763, -71.09579], [42.3776, -71.09578], [42.37759, -71.09578], [42.37732, -71.0957], [42.37696, -71.0956], [42.3768, -71.09554], [42.3765, -71.09544], [42.3764, -71.09541], [42.3762, -71.09535], [42.37585, -71.09524], [42.37543, -71.09511], [42.37514, -71.09502], [42.37493, -71.09495], [42.37422, -71.09472], [42.3733, -71.09443], [42.37327, -71.09443], [42.37323, -71.09443], [42.37316, -71.09443], [42.37311, -71.09443], [42.37291, -71.09449]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_5c66a29df88a4213aa6e30aed7bf05a4 = L.polyline(
[[42.37291, -71.09449], [42.37294, -71.09478], [42.37301, -71.09533], [42.37313, -71.09624], [42.37323, -71.09697], [42.37324, -71.09709], [42.37326, -71.09725], [42.37338, -71.09815], [42.37349, -71.09915], [42.37356, -71.09956], [42.37357, -71.09966], [42.3736, -71.09992], [42.37363, -71.10018], [42.37368, -71.10053], [42.37372, -71.10083]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_976b2b89e275453fb5ba2f76c7f32ade = L.polyline(
[[42.37372, -71.10083], [42.37354, -71.1006], [42.37347, -71.10052], [42.37301, -71.09995], [42.37294, -71.09987], [42.37284, -71.09976], [42.37275, -71.09965], [42.37256, -71.09941], [42.37221, -71.09898], [42.37183, -71.09852], [42.37149, -71.09811], [42.37101, -71.09752], [42.37048, -71.09688], [42.37006, -71.09637], [42.36992, -71.09619]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_72976575e6ad41908f19329dfecd8e96 = L.polyline(
[[42.36992, -71.09619], [42.37036, -71.09595], [42.37047, -71.09589], [42.37056, -71.09584], [42.3706, -71.09581], [42.37064, -71.09578], [42.37066, -71.09576], [42.37069, -71.09574], [42.37072, -71.09572], [42.37101, -71.09555], [42.37106, -71.09553], [42.3714, -71.09533], [42.37164, -71.09519], [42.37189, -71.09505], [42.37192, -71.09504], [42.37197, -71.09501], [42.37199, -71.095], [42.37201, -71.095], [42.37203, -71.09499], [42.37205, -71.09498], [42.37207, -71.09497], [42.37208, -71.09497], [42.37211, -71.09495], [42.37235, -71.09481], [42.37259, -71.09467], [42.37291, -71.09449]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_5c6be55503ff4ae98878711472f73ae4 = L.polyline(
[[42.37291, -71.09449], [42.37311, -71.09443], [42.37316, -71.09443], [42.37323, -71.09443], [42.37327, -71.09443], [42.3733, -71.09443], [42.37422, -71.09472], [42.37493, -71.09495], [42.37514, -71.09502], [42.37543, -71.09511], [42.37585, -71.09524], [42.3762, -71.09535], [42.3764, -71.09541], [42.3765, -71.09544], [42.3768, -71.09554], [42.37696, -71.0956], [42.37732, -71.0957], [42.37759, -71.09578], [42.3776, -71.09578], [42.37763, -71.09579], [42.37766, -71.0958], [42.37774, -71.09582], [42.37777, -71.09583], [42.37787, -71.09586], [42.37803, -71.0959], [42.37818, -71.09595], [42.37828, -71.09598], [42.37868, -71.09611], [42.37954, -71.09637], [42.37956, -71.09635], [42.37958, -71.09634], [42.3796, -71.09632], [42.37965, -71.0963]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_8ffcaeaae2b0409f975bfb944492ea44 = L.polyline(
[[42.37965, -71.0963], [42.37964, -71.09639]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);
var poly_line_225f2fe54b6d4fd1acb0f1bbaadf770e = L.polyline(
[[42.34217, -71.12131], [42.34224, -71.12136], [42.34227, -71.12139], [42.3423, -71.12141], [42.34232, -71.12144], [42.34235, -71.12147], [42.34237, -71.1215], [42.3424, -71.12153], [42.34242, -71.12157], [42.34265, -71.12198], [42.34272, -71.12213], [42.34275, -71.12219], [42.34288, -71.12241], [42.34321, -71.123], [42.34338, -71.12329], [42.34345, -71.12339], [42.3435, -71.12348], [42.34353, -71.12353], [42.34355, -71.12357], [42.34357, -71.1236], [42.34359, -71.12364], [42.34365, -71.12375], [42.3437, -71.12386], [42.34381, -71.12405], [42.34394, -71.12429], [42.34408, -71.12453], [42.34421, -71.12479], [42.34425, -71.12487], [42.3443, -71.12496], [42.34435, -71.12506], [42.34444, -71.12525], [42.34459, -71.12556], [42.34471, -71.12583], [42.3448, -71.12602], [42.34505, -71.12654], [42.34514, -71.12671], [42.34523, -71.12687], [42.34531, -71.127], [42.34539, -71.12712], [42.34544, -71.12718], [42.34552, -71.12729], [42.34559, -71.12738], [42.34565, -71.12745], [42.34575, -71.12757], [42.34584, -71.12768], [42.3459, -71.12774], [42.34599, -71.12782], [42.3461, -71.12791], [42.34619, -71.12798], [42.34635, -71.12811], [42.34648, -71.12821], [42.34653, -71.12825], [42.3466, -71.1283], [42.34667, -71.12835], [42.34674, -71.12841], [42.34684, -71.12848], [42.34731, -71.12879], [42.34791, -71.12914], [42.34815, -71.12929], [42.34831, -71.12938], [42.34835, -71.1294], [42.34842, -71.12945], [42.34851, -71.1295], [42.34871, -71.12963], [42.34883, -71.12972], [42.3489, -71.12977], [42.34905, -71.12989], [42.34907, -71.12991], [42.34921, -71.13003], [42.34937, -71.13019], [42.34945, -71.13027], [42.34951, -71.13033], [42.34955, -71.13038], [42.34962, -71.13045], [42.34968, -71.13051], [42.34972, -71.13056], [42.34978, -71.13061], [42.34983, -71.13066], [42.34988, -71.1307], [42.34996, -71.13075], [42.35015, -71.13088], [42.35027, -71.13095], [42.35035, -71.13099], [42.35041, -71.13101], [42.35044, -71.13103], [42.3505, -71.13106], [42.35059, -71.13111], [42.35063, -71.13113], [42.35075, -71.1312], [42.35083, -71.13125], [42.35088, -71.13128], [42.35116, -71.13145], [42.35132, -71.13154], [42.35144, -71.1316], [42.35157, -71.13165], [42.35166, -71.13169], [42.35174, -71.13172], [42.35185, -71.13175], [42.35201, -71.1318], [42.35239, -71.13192], [42.3526, -71.13198], [42.35283, -71.13205], [42.35296, -71.13209], [42.35306, -71.13211], [42.35315, -71.13212], [42.35322, -71.13213], [42.35345, -71.13218], [42.35363, -71.13222], [42.35382, -71.13227], [42.35393, -71.1323], [42.35405, -71.13234], [42.35422, -71.13239], [42.35469, -71.13253], [42.35493, -71.13261], [42.35509, -71.13266], [42.35515, -71.13268], [42.35528, -71.13272], [42.35552, -71.13279]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(map_432d8f7d0ccb4c46976856e7383ad255);