-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdd_rich.js
3067 lines (3067 loc) · 780 KB
/
dd_rich.js
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
var speciesRichness = {
"type": "FeatureCollection",
"name": "dd_rich",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.45, 69.65 ], [ -16.3, 70.33 ], [ -19.01, 70.3 ], [ -19.88, 69.94 ], [ -20.17, 69.48 ], [ -18.74, 68.73 ], [ -16.71, 68.85 ], [ -16.36, 69.3 ], [ -15.45, 69.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.24, 69.31 ], [ -23.27, 69.79 ], [ -26.03, 68.78 ], [ -24.77, 68.21 ], [ -22.77, 68.41 ], [ -22.24, 69.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.44, 68.16 ], [ -13.04, 68.6 ], [ -12.11, 68.92 ], [ -12.83, 69.63 ], [ -15.45, 69.65 ], [ -16.36, 69.3 ], [ -16.71, 68.85 ], [ -15.43, 68.07 ], [ -13.44, 68.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.74, 68.73 ], [ -20.17, 69.48 ], [ -22.24, 69.31 ], [ -22.77, 68.41 ], [ -21.36, 67.68 ], [ -19.39, 67.83 ], [ -18.74, 68.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -26.03, 68.78 ], [ -27.65, 68.47 ], [ -28.41, 68.44 ], [ -28.69, 67.76 ], [ -27.17, 67.1 ], [ -25.25, 67.31 ], [ -24.77, 68.21 ], [ -26.03, 68.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.43, 68.07 ], [ -16.71, 68.85 ], [ -18.74, 68.73 ], [ -19.39, 67.83 ], [ -18.11, 67.08 ], [ -16.17, 67.19 ], [ -15.43, 68.07 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.36, 67.68 ], [ -22.77, 68.41 ], [ -24.77, 68.21 ], [ -25.25, 67.31 ], [ -23.84, 66.61 ], [ -21.95, 66.79 ], [ -21.36, 67.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.3, 67.35 ], [ -13.44, 68.16 ], [ -15.43, 68.07 ], [ -16.17, 67.19 ], [ -15.01, 66.41 ], [ -13.13, 66.49 ], [ -12.3, 67.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.61, 67.5 ], [ -32.0, 68.04 ], [ -33.46, 67.39 ], [ -33.93, 66.77 ], [ -32.76, 66.32 ], [ -30.92, 66.6 ], [ -30.61, 67.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.11, 67.08 ], [ -19.39, 67.83 ], [ -21.36, 67.68 ], [ -21.95, 66.79 ], [ -20.66, 66.06 ], [ -18.78, 66.2 ], [ -18.11, 67.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.17, 67.1 ], [ -28.69, 67.76 ], [ -30.61, 67.5 ], [ -30.92, 66.6 ], [ -29.42, 65.96 ], [ -27.59, 66.2 ], [ -27.17, 67.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.25, 65.72 ], [ -9.35, 66.57 ], [ -10.36, 67.4 ], [ -12.3, 67.35 ], [ -13.13, 66.49 ], [ -12.09, 65.68 ], [ -10.25, 65.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -23.84, 66.61 ], [ -25.25, 67.31 ], [ -27.17, 67.1 ], [ -27.59, 66.2 ], [ -26.19, 65.53 ], [ -24.36, 65.73 ], [ -23.84, 66.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.93, 66.77 ], [ -34.71, 66.34 ], [ -35.58, 66.25 ], [ -36.34, 65.71 ], [ -34.77, 65.12 ], [ -33.02, 65.42 ], [ -32.76, 66.32 ], [ -33.93, 66.77 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -29.42, 65.96 ], [ -30.92, 66.6 ], [ -32.76, 66.32 ], [ -33.02, 65.42 ], [ -31.54, 64.81 ], [ -29.78, 65.07 ], [ -29.42, 65.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -26.19, 65.53 ], [ -27.59, 66.2 ], [ -29.42, 65.96 ], [ -29.78, 65.07 ], [ -28.4, 64.42 ], [ -26.64, 64.64 ], [ -26.19, 65.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -38.07, 65.37 ], [ -38.68, 65.58 ], [ -39.96, 65.52 ], [ -39.79, 65.24 ], [ -41.16, 64.94 ], [ -40.61, 64.64 ], [ -40.54, 64.35 ], [ -39.83, 64.12 ], [ -38.18, 64.47 ], [ -38.07, 65.37 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.32, 64.9 ], [ -10.25, 65.72 ], [ -12.09, 65.68 ], [ -12.91, 64.84 ], [ -11.94, 64.04 ], [ -10.19, 64.07 ], [ -9.32, 64.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.77, 65.12 ], [ -36.34, 65.71 ], [ -38.07, 65.37 ], [ -38.18, 64.47 ], [ -36.65, 63.91 ], [ -34.98, 64.23 ], [ -34.77, 65.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -31.54, 64.81 ], [ -33.02, 65.42 ], [ -34.77, 65.12 ], [ -34.98, 64.23 ], [ -33.52, 63.64 ], [ -31.84, 63.92 ], [ -31.54, 64.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.71, 64.07 ], [ -7.53, 64.9 ], [ -9.32, 64.9 ], [ -10.19, 64.07 ], [ -9.32, 63.25 ], [ -7.62, 63.25 ], [ -6.71, 64.07 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.91, 64.84 ], [ -14.0, 64.79 ], [ -14.54, 64.4 ], [ -15.18, 64.24 ], [ -15.45, 63.92 ], [ -14.45, 63.15 ], [ -12.74, 63.2 ], [ -11.94, 64.04 ], [ -12.91, 64.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.54, 64.35 ], [ -40.78, 63.49 ], [ -41.49, 63.21 ], [ -41.47, 62.86 ], [ -39.89, 63.23 ], [ -39.83, 64.12 ], [ -40.54, 64.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.35, 63.96 ], [ -26.64, 64.64 ], [ -28.4, 64.42 ], [ -28.78, 63.53 ], [ -27.48, 62.88 ], [ -25.81, 63.09 ], [ -25.35, 63.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.24, 63.78 ], [ -18.71, 63.39 ], [ -20.68, 63.59 ], [ -19.56, 62.86 ], [ -17.87, 62.98 ], [ -17.24, 63.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -36.65, 63.91 ], [ -38.18, 64.47 ], [ -39.83, 64.12 ], [ -39.89, 63.23 ], [ -38.39, 62.69 ], [ -36.8, 63.02 ], [ -36.65, 63.91 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.4, 63.44 ], [ -23.6, 64.15 ], [ -25.35, 63.96 ], [ -25.81, 63.09 ], [ -24.6, 62.4 ], [ -22.93, 62.58 ], [ -22.4, 63.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.32, 63.25 ], [ -10.19, 64.07 ], [ -11.94, 64.04 ], [ -12.74, 63.2 ], [ -11.83, 62.41 ], [ -10.17, 62.43 ], [ -9.32, 63.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.24, 63.19 ], [ -4.98, 64.04 ], [ -6.71, 64.07 ], [ -7.62, 63.25 ], [ -6.84, 62.42 ], [ -5.19, 62.39 ], [ -4.24, 63.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.45, 63.15 ], [ -15.45, 63.92 ], [ -17.01, 63.84 ], [ -17.2, 63.78 ], [ -17.2, 63.78 ], [ -17.14, 63.78 ], [ -17.2, 63.78 ], [ -17.2, 63.78 ], [ -17.24, 63.78 ], [ -17.87, 62.98 ], [ -16.84, 62.23 ], [ -15.17, 62.31 ], [ -14.45, 63.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.56, 62.86 ], [ -20.68, 63.59 ], [ -22.4, 63.44 ], [ -22.93, 62.58 ], [ -21.8, 61.87 ], [ -20.16, 62.01 ], [ -19.56, 62.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.62, 63.25 ], [ -9.32, 63.25 ], [ -10.17, 62.43 ], [ -9.34, 61.62 ], [ -7.72, 61.61 ], [ -7.26, 62.04 ], [ -7.16, 62.13 ], [ -7.16, 62.13 ], [ -7.04, 62.24 ], [ -7.04, 62.24 ], [ -6.94, 62.33 ], [ -6.84, 62.42 ], [ -7.62, 63.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -38.39, 62.69 ], [ -39.89, 63.23 ], [ -41.47, 62.86 ], [ -41.48, 61.97 ], [ -40.01, 61.45 ], [ -38.49, 61.8 ], [ -38.39, 62.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.83, 62.41 ], [ -12.74, 63.2 ], [ -14.45, 63.15 ], [ -15.17, 62.31 ], [ -14.23, 61.53 ], [ -12.6, 61.58 ], [ -11.83, 62.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.9, 61.48 ], [ -1.93, 62.26 ], [ -2.57, 63.13 ], [ -4.24, 63.19 ], [ -5.19, 62.39 ], [ -4.5, 61.54 ], [ -2.9, 61.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -24.6, 62.4 ], [ -25.81, 63.09 ], [ -27.48, 62.88 ], [ -27.88, 62.0 ], [ -26.66, 61.34 ], [ -25.06, 61.53 ], [ -24.6, 62.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.84, 62.23 ], [ -17.87, 62.98 ], [ -19.56, 62.86 ], [ -20.16, 62.01 ], [ -19.11, 61.27 ], [ -17.49, 61.38 ], [ -16.84, 62.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.8, 61.87 ], [ -22.93, 62.58 ], [ -24.6, 62.4 ], [ -25.06, 61.53 ], [ -23.92, 60.84 ], [ -22.33, 61.01 ], [ -21.8, 61.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.34, 61.62 ], [ -10.17, 62.43 ], [ -11.83, 62.41 ], [ -12.6, 61.58 ], [ -11.74, 60.79 ], [ -10.15, 60.81 ], [ -9.34, 61.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.19, 62.39 ], [ -6.84, 62.42 ], [ -6.94, 62.33 ], [ -7.04, 62.24 ], [ -7.04, 62.24 ], [ -7.16, 62.13 ], [ -7.16, 62.13 ], [ -7.26, 62.04 ], [ -7.72, 61.61 ], [ -6.98, 60.79 ], [ -5.4, 60.75 ], [ -4.5, 61.54 ], [ -5.19, 62.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -26.66, 61.34 ], [ -27.88, 62.0 ], [ -29.49, 61.77 ], [ -29.82, 60.89 ], [ -28.6, 60.25 ], [ -27.06, 60.46 ], [ -26.66, 61.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.01, 61.45 ], [ -41.48, 61.97 ], [ -42.09, 61.82 ], [ -42.69, 61.29 ], [ -42.81, 60.65 ], [ -41.52, 60.2 ], [ -40.07, 60.56 ], [ -40.01, 61.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.72, 61.61 ], [ -9.34, 61.62 ], [ -10.15, 60.81 ], [ -9.37, 60.0 ], [ -7.82, 59.99 ], [ -6.98, 60.79 ], [ -7.72, 61.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.31, 60.06 ], [ -143.89, 59.99 ], [ -145.35, 60.35 ], [ -145.27, 60.25 ], [ -145.26, 60.25 ], [ -145.02, 59.97 ], [ -144.38, 59.95 ], [ -144.32, 59.95 ], [ -143.46, 59.93 ], [ -143.31, 60.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.74, 60.79 ], [ -12.6, 61.58 ], [ -14.23, 61.53 ], [ -14.93, 60.7 ], [ -14.04, 59.93 ], [ -12.48, 59.97 ], [ -11.74, 60.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.9, 61.48 ], [ -4.5, 61.54 ], [ -5.4, 60.75 ], [ -4.73, 59.91 ], [ -3.2, 59.84 ], [ -2.28, 60.62 ], [ -2.9, 61.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -28.6, 60.25 ], [ -29.82, 60.89 ], [ -31.37, 60.64 ], [ -31.64, 59.76 ], [ -30.42, 59.13 ], [ -28.94, 59.37 ], [ -28.6, 60.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.35, 60.35 ], [ -146.3, 60.8 ], [ -147.35, 60.81 ], [ -147.63, 60.37 ], [ -148.12, 59.99 ], [ -148.11, 59.98 ], [ -148.09, 59.96 ], [ -147.93, 59.79 ], [ -147.91, 59.77 ], [ -147.37, 59.19 ], [ -145.86, 59.18 ], [ -145.02, 59.97 ], [ -145.26, 60.25 ], [ -145.27, 60.25 ], [ -145.35, 60.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.37, 60.0 ], [ -10.15, 60.81 ], [ -11.74, 60.79 ], [ -12.48, 59.97 ], [ -11.64, 59.18 ], [ -10.13, 59.19 ], [ -9.37, 60.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.4, 60.75 ], [ -6.98, 60.79 ], [ -7.82, 59.99 ], [ -7.11, 59.16 ], [ -5.82, 59.13 ], [ -5.81, 59.13 ], [ -5.6, 59.12 ], [ -4.73, 59.91 ], [ -5.4, 60.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.81, 60.65 ], [ -43.13, 60.07 ], [ -44.18, 60.18 ], [ -44.33, 59.42 ], [ -42.91, 58.93 ], [ -41.53, 59.31 ], [ -41.52, 60.2 ], [ -42.81, 60.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.46, 59.7 ], [ -142.54, 60.09 ], [ -143.31, 60.06 ], [ -143.46, 59.93 ], [ -142.82, 59.1 ], [ -141.3, 59.03 ], [ -140.46, 59.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.04, 59.93 ], [ -14.93, 60.7 ], [ -16.52, 60.63 ], [ -17.15, 59.79 ], [ -16.2, 59.03 ], [ -14.68, 59.1 ], [ -14.04, 59.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.79, 58.72 ], [ -26.31, 58.93 ], [ -25.91, 59.79 ], [ -27.06, 60.46 ], [ -28.6, 60.25 ], [ -28.94, 59.37 ], [ -27.79, 58.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -148.12, 59.99 ], [ -149.73, 59.9 ], [ -150.39, 59.16 ], [ -149.6, 58.36 ], [ -148.13, 58.38 ], [ -147.37, 59.19 ], [ -147.91, 59.77 ], [ -147.93, 59.79 ], [ -148.09, 59.96 ], [ -148.11, 59.98 ], [ -148.12, 59.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.82, 59.99 ], [ -9.37, 60.0 ], [ -10.13, 59.19 ], [ -9.37, 58.38 ], [ -7.9, 58.36 ], [ -7.11, 59.16 ], [ -7.82, 59.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.38, 59.95 ], [ -145.02, 59.97 ], [ -145.86, 59.18 ], [ -145.17, 58.36 ], [ -143.69, 58.32 ], [ -142.82, 59.1 ], [ -143.46, 59.93 ], [ -144.32, 59.95 ], [ -144.38, 59.95 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.64, 59.18 ], [ -12.48, 59.97 ], [ -14.04, 59.93 ], [ -14.68, 59.1 ], [ -13.81, 58.32 ], [ -12.33, 58.36 ], [ -11.64, 59.18 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -138.27, 58.84 ], [ -138.43, 59.1 ], [ -140.46, 59.7 ], [ -141.3, 59.03 ], [ -140.73, 58.2 ], [ -139.25, 58.11 ], [ -138.27, 58.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.2, 59.03 ], [ -17.15, 59.79 ], [ -18.7, 59.69 ], [ -19.23, 58.84 ], [ -18.25, 58.11 ], [ -16.77, 58.2 ], [ -16.2, 59.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.42, 59.13 ], [ -31.64, 59.76 ], [ -33.12, 59.49 ], [ -33.34, 58.61 ], [ -32.13, 58.0 ], [ -30.7, 58.26 ], [ -30.42, 59.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.79, 58.72 ], [ -28.94, 59.37 ], [ -30.42, 59.13 ], [ -30.7, 58.26 ], [ -29.52, 57.63 ], [ -28.09, 57.85 ], [ -27.79, 58.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.86, 59.18 ], [ -147.37, 59.19 ], [ -148.13, 58.38 ], [ -147.4, 57.57 ], [ -145.96, 57.56 ], [ -145.17, 58.36 ], [ -145.86, 59.18 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.37, 58.38 ], [ -10.13, 59.19 ], [ -11.64, 59.18 ], [ -12.33, 58.36 ], [ -11.54, 57.56 ], [ -10.1, 57.57 ], [ -9.37, 58.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -150.39, 59.16 ], [ -151.9, 59.12 ], [ -152.34, 58.11 ], [ -151.69, 57.48 ], [ -150.27, 57.53 ], [ -149.6, 58.36 ], [ -150.39, 59.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.25, 58.25 ], [ -5.08, 58.41 ], [ -5.6, 59.12 ], [ -5.81, 59.13 ], [ -5.82, 59.13 ], [ -7.11, 59.16 ], [ -7.9, 58.36 ], [ -7.34, 57.67 ], [ -7.12, 57.62 ], [ -6.0, 57.51 ], [ -5.81, 57.86 ], [ -5.3, 57.98 ], [ -5.25, 58.25 ] ], [ [ -6.7, 57.88 ], [ -7.05, 58.23 ], [ -6.55, 58.37 ], [ -6.43, 58.01 ], [ -6.7, 57.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -141.3, 59.03 ], [ -142.82, 59.1 ], [ -143.69, 58.32 ], [ -143.07, 57.49 ], [ -141.63, 57.43 ], [ -140.73, 58.2 ], [ -141.3, 59.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.81, 58.32 ], [ -14.68, 59.1 ], [ -16.2, 59.03 ], [ -16.77, 58.2 ], [ -15.87, 57.43 ], [ -14.43, 57.49 ], [ -13.81, 58.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.11, 57.44 ], [ -155.9, 57.26 ], [ -154.78, 57.33 ], [ -154.33, 57.64 ], [ -153.97, 58.21 ], [ -154.93, 58.03 ], [ -155.59, 57.79 ], [ -156.11, 57.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -136.37, 57.84 ], [ -136.46, 58.1 ], [ -137.93, 58.79 ], [ -138.27, 58.84 ], [ -139.25, 58.11 ], [ -138.74, 57.26 ], [ -137.3, 57.15 ], [ -136.37, 57.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.25, 58.11 ], [ -19.23, 58.84 ], [ -20.73, 58.72 ], [ -21.19, 57.87 ], [ -20.2, 57.15 ], [ -18.76, 57.26 ], [ -18.25, 58.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.69, 56.79 ], [ -133.31, 56.99 ], [ -133.35, 57.28 ], [ -133.89, 57.52 ], [ -134.52, 57.03 ], [ -134.45, 56.88 ], [ -134.33, 56.87 ], [ -133.96, 56.82 ], [ -133.75, 56.8 ], [ -133.71, 56.8 ], [ -133.69, 56.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.4, 57.57 ], [ -148.13, 58.38 ], [ -149.6, 58.36 ], [ -150.27, 57.53 ], [ -149.51, 56.72 ], [ -148.12, 56.74 ], [ -147.4, 57.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.35, 57.5 ], [ -7.34, 57.67 ], [ -7.9, 58.36 ], [ -9.37, 58.38 ], [ -10.1, 57.57 ], [ -9.38, 56.74 ], [ -7.99, 56.72 ], [ -7.37, 57.4 ], [ -7.35, 57.5 ], [ -7.4, 57.55 ], [ -7.35, 57.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.54, 57.56 ], [ -12.33, 58.36 ], [ -13.81, 58.32 ], [ -14.43, 57.49 ], [ -13.6, 56.71 ], [ -12.19, 56.74 ], [ -11.54, 57.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.34, 58.11 ], [ -152.87, 57.99 ], [ -153.21, 58.16 ], [ -153.97, 58.21 ], [ -154.33, 57.64 ], [ -153.86, 57.86 ], [ -152.43, 57.81 ], [ -152.7, 57.28 ], [ -153.37, 57.18 ], [ -153.89, 56.79 ], [ -153.85, 56.75 ], [ -153.84, 56.74 ], [ -153.65, 56.56 ], [ -152.28, 56.63 ], [ -151.69, 57.48 ], [ -152.34, 58.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -29.52, 57.63 ], [ -30.7, 58.26 ], [ -32.13, 58.0 ], [ -32.33, 57.13 ], [ -31.15, 56.52 ], [ -29.77, 56.76 ], [ -29.52, 57.63 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.25, 58.11 ], [ -140.73, 58.2 ], [ -141.63, 57.43 ], [ -141.08, 56.6 ], [ -139.67, 56.52 ], [ -138.74, 57.26 ], [ -139.25, 58.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.87, 57.43 ], [ -16.77, 58.2 ], [ -18.25, 58.11 ], [ -18.76, 57.26 ], [ -17.83, 56.52 ], [ -16.42, 56.6 ], [ -15.87, 57.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.11, 57.44 ], [ -156.37, 57.14 ], [ -157.39, 56.86 ], [ -157.95, 56.48 ], [ -157.68, 56.26 ], [ -156.35, 56.38 ], [ -155.9, 57.26 ], [ -156.11, 57.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -136.37, 57.84 ], [ -137.3, 57.15 ], [ -136.85, 56.31 ], [ -135.46, 56.17 ], [ -135.01, 56.49 ], [ -135.37, 56.82 ], [ -135.42, 57.56 ], [ -134.84, 57.26 ], [ -134.64, 56.75 ], [ -134.45, 56.88 ], [ -134.52, 57.03 ], [ -134.84, 57.57 ], [ -135.84, 57.4 ], [ -136.37, 57.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.38, 56.74 ], [ -10.1, 57.57 ], [ -11.54, 57.56 ], [ -12.19, 56.74 ], [ -11.44, 55.93 ], [ -10.07, 55.93 ], [ -9.38, 56.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -149.51, 56.72 ], [ -150.27, 57.53 ], [ -151.69, 57.48 ], [ -152.28, 56.63 ], [ -151.49, 55.83 ], [ -150.14, 55.88 ], [ -149.51, 56.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.6, 56.71 ], [ -14.43, 57.49 ], [ -15.87, 57.43 ], [ -16.42, 56.6 ], [ -15.57, 55.83 ], [ -14.19, 55.88 ], [ -13.6, 56.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.4, 56.71 ], [ 165.57, 57.49 ], [ 164.13, 57.43 ], [ 163.58, 56.6 ], [ 164.43, 55.83 ], [ 165.81, 55.88 ], [ 166.4, 56.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.89, 56.79 ], [ -154.53, 57.0 ], [ -154.78, 57.33 ], [ -155.9, 57.26 ], [ -156.35, 56.38 ], [ -155.72, 55.83 ], [ -155.66, 55.77 ], [ -155.46, 55.6 ], [ -154.15, 55.69 ], [ -153.65, 56.56 ], [ -153.84, 56.74 ], [ -153.85, 56.75 ], [ -153.89, 56.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -137.3, 57.15 ], [ -138.74, 57.26 ], [ -139.67, 56.52 ], [ -139.17, 55.68 ], [ -137.8, 55.58 ], [ -136.85, 56.31 ], [ -137.3, 57.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.83, 56.52 ], [ -18.76, 57.26 ], [ -20.2, 57.15 ], [ -20.65, 56.31 ], [ -19.7, 55.58 ], [ -18.33, 55.68 ], [ -17.83, 56.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.7, 56.74 ], [ -133.69, 56.79 ], [ -133.71, 56.8 ], [ -133.75, 56.8 ], [ -133.96, 56.82 ], [ -134.33, 56.87 ], [ -134.45, 56.88 ], [ -134.64, 56.75 ], [ -135.01, 56.49 ], [ -135.46, 56.17 ], [ -135.06, 55.32 ], [ -133.7, 55.17 ], [ -133.15, 55.55 ], [ -133.12, 55.57 ], [ -133.1, 55.58 ], [ -133.09, 55.59 ], [ -133.08, 55.59 ], [ -133.06, 55.61 ], [ -133.04, 55.62 ], [ -133.26, 56.14 ], [ -133.62, 56.31 ], [ -133.7, 56.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.41, 55.1 ], [ -8.32, 55.08 ], [ -7.95, 55.22 ], [ -7.36, 55.88 ], [ -7.99, 56.72 ], [ -9.38, 56.74 ], [ -10.07, 55.93 ], [ -9.41, 55.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.44, 55.93 ], [ -12.19, 56.74 ], [ -13.6, 56.71 ], [ -14.19, 55.88 ], [ -13.41, 55.08 ], [ -12.07, 55.1 ], [ -11.44, 55.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.56, 55.93 ], [ 167.81, 56.74 ], [ 166.4, 56.71 ], [ 165.81, 55.88 ], [ 166.59, 55.08 ], [ 167.93, 55.1 ], [ 168.56, 55.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -151.49, 55.83 ], [ -152.28, 56.63 ], [ -153.65, 56.56 ], [ -154.15, 55.69 ], [ -153.33, 54.9 ], [ -152.03, 54.97 ], [ -151.49, 55.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.65, 55.69 ], [ 176.15, 56.56 ], [ 174.78, 56.63 ], [ 173.99, 55.83 ], [ 174.53, 54.97 ], [ 175.83, 54.9 ], [ 176.65, 55.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.57, 55.83 ], [ -16.42, 56.6 ], [ -17.83, 56.52 ], [ -18.33, 55.68 ], [ -17.45, 54.92 ], [ -16.1, 54.99 ], [ -15.57, 55.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.43, 55.83 ], [ 163.58, 56.6 ], [ 163.37, 56.19 ], [ 163.06, 56.02 ], [ 162.6, 56.23 ], [ 162.09, 56.08 ], [ 161.77, 55.6 ], [ 162.55, 54.92 ], [ 163.9, 54.99 ], [ 164.43, 55.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.72, 55.83 ], [ -156.35, 56.38 ], [ -157.68, 56.26 ], [ -157.87, 55.81 ], [ -158.4, 55.47 ], [ -157.82, 54.8 ], [ -156.22, 54.81 ], [ -155.67, 55.15 ], [ -155.46, 55.6 ], [ -155.66, 55.77 ], [ -155.72, 55.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.46, 56.17 ], [ -136.85, 56.31 ], [ -137.8, 55.58 ], [ -137.36, 54.73 ], [ -136.02, 54.61 ], [ -135.06, 55.32 ], [ -135.46, 56.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.07, 55.93 ], [ -11.44, 55.93 ], [ -12.07, 55.1 ], [ -11.37, 54.28 ], [ -10.09, 54.28 ], [ -9.41, 55.1 ], [ -10.07, 55.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.59, 55.1 ], [ 169.93, 55.93 ], [ 168.56, 55.93 ], [ 167.93, 55.1 ], [ 168.63, 54.28 ], [ 169.93, 54.28 ], [ 170.59, 55.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.41, 55.08 ], [ -14.19, 55.88 ], [ -15.57, 55.83 ], [ -16.1, 54.99 ], [ -15.3, 54.21 ], [ -13.98, 54.25 ], [ -13.41, 55.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.59, 55.08 ], [ 165.81, 55.88 ], [ 164.43, 55.83 ], [ 163.9, 54.99 ], [ 164.7, 54.21 ], [ 166.02, 54.25 ], [ 166.4, 54.82 ], [ 166.48, 54.93 ], [ 166.59, 55.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.5, 54.9 ], [ -132.52, 55.11 ], [ -133.23, 55.28 ], [ -133.04, 55.62 ], [ -133.06, 55.61 ], [ -133.08, 55.59 ], [ -133.09, 55.59 ], [ -133.1, 55.58 ], [ -133.12, 55.57 ], [ -133.15, 55.55 ], [ -133.7, 55.17 ], [ -133.35, 54.32 ], [ -132.03, 54.15 ], [ -131.0, 54.82 ], [ -131.21, 55.19 ], [ -132.15, 55.56 ], [ -131.95, 54.8 ], [ -132.5, 54.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.33, 54.9 ], [ -154.15, 55.69 ], [ -155.46, 55.6 ], [ -155.67, 55.15 ], [ -156.22, 54.81 ], [ -155.69, 54.13 ], [ -154.11, 54.12 ], [ -153.56, 54.45 ], [ -153.33, 54.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.61, 54.12 ], [ 178.19, 54.13 ], [ 178.72, 54.81 ], [ 178.17, 55.15 ], [ 177.96, 55.6 ], [ 176.65, 55.69 ], [ 175.83, 54.9 ], [ 176.06, 54.45 ], [ 176.61, 54.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -137.8, 55.58 ], [ -139.17, 55.68 ], [ -140.05, 54.92 ], [ -139.57, 54.08 ], [ -138.25, 53.99 ], [ -137.36, 54.73 ], [ -137.8, 55.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.45, 54.92 ], [ -18.33, 55.68 ], [ -19.7, 55.58 ], [ -20.14, 54.73 ], [ -19.25, 53.99 ], [ -17.93, 54.08 ], [ -17.45, 54.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.55, 54.92 ], [ 161.77, 55.6 ], [ 161.79, 55.18 ], [ 162.15, 54.85 ], [ 161.73, 54.51 ], [ 160.97, 54.59 ], [ 160.35, 54.33 ], [ 160.75, 53.99 ], [ 162.07, 54.08 ], [ 162.55, 54.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.82, 54.8 ], [ -158.4, 55.47 ], [ -160.03, 55.43 ], [ -161.01, 54.71 ], [ -160.38, 54.05 ], [ -158.82, 54.09 ], [ -157.82, 54.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.7, 55.17 ], [ -135.06, 55.32 ], [ -136.02, 54.61 ], [ -135.63, 53.76 ], [ -134.32, 53.62 ], [ -133.35, 54.32 ], [ -133.7, 55.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.32, 54.05 ], [ -165.0, 53.76 ], [ -163.49, 53.89 ], [ -162.86, 54.42 ], [ -162.85, 54.42 ], [ -162.83, 54.45 ], [ -162.78, 54.48 ], [ -162.6, 54.63 ], [ -163.31, 55.11 ], [ -163.27, 55.28 ], [ -164.88, 55.18 ], [ -165.71, 54.39 ], [ -165.58, 54.27 ], [ -165.47, 54.18 ], [ -165.37, 54.09 ], [ -165.32, 54.05 ] ], [ [ -164.55, 54.41 ], [ -164.68, 54.68 ], [ -164.42, 54.93 ], [ -163.55, 55.05 ], [ -163.32, 54.74 ], [ -164.18, 54.6 ], [ -164.55, 54.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.37, 54.28 ], [ -12.07, 55.1 ], [ -13.41, 55.08 ], [ -13.98, 54.25 ], [ -13.25, 53.44 ], [ -11.98, 53.45 ], [ -11.37, 54.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.63, 54.28 ], [ 167.93, 55.1 ], [ 166.59, 55.08 ], [ 166.48, 54.93 ], [ 166.4, 54.82 ], [ 166.02, 54.25 ], [ 166.75, 53.44 ], [ 168.02, 53.45 ], [ 168.63, 54.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.5, 54.21 ], [ 171.92, 55.07 ], [ 170.59, 55.1 ], [ 169.93, 54.28 ], [ 170.55, 53.43 ], [ 171.8, 53.39 ], [ 172.5, 54.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.3, 54.21 ], [ -16.1, 54.99 ], [ -17.45, 54.92 ], [ -17.93, 54.08 ], [ -17.1, 53.31 ], [ -15.82, 53.37 ], [ -15.3, 54.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.7, 54.21 ], [ 163.9, 54.99 ], [ 162.55, 54.92 ], [ 162.07, 54.08 ], [ 162.9, 53.31 ], [ 164.19, 53.37 ], [ 164.7, 54.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.83, 54.9 ], [ 174.53, 54.97 ], [ 173.77, 54.16 ], [ 174.03, 53.72 ], [ 174.58, 53.4 ], [ 176.13, 53.43 ], [ 176.61, 54.12 ], [ 176.06, 54.45 ], [ 175.83, 54.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.68, 53.59 ], [ -130.46, 54.36 ], [ -130.45, 54.61 ], [ -131.0, 54.82 ], [ -132.03, 54.15 ], [ -131.98, 54.03 ], [ -131.87, 53.71 ], [ -131.72, 53.29 ], [ -130.43, 53.1 ], [ -130.11, 53.31 ], [ -129.95, 53.42 ], [ -129.89, 53.45 ], [ -129.68, 53.58 ], [ -129.68, 53.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.69, 54.13 ], [ -156.22, 54.81 ], [ -157.82, 54.8 ], [ -158.82, 54.09 ], [ -158.24, 53.42 ], [ -156.71, 53.44 ], [ -155.69, 54.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -136.02, 54.61 ], [ -137.36, 54.73 ], [ -138.25, 53.99 ], [ -137.82, 53.14 ], [ -136.54, 53.03 ], [ -135.63, 53.76 ], [ -136.02, 54.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.35, 54.33 ], [ 159.98, 54.09 ], [ 159.85, 53.71 ], [ 160.04, 53.12 ], [ 160.32, 53.14 ], [ 160.75, 53.99 ], [ 160.35, 54.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -160.38, 54.05 ], [ -161.01, 54.71 ], [ -162.37, 54.65 ], [ -162.6, 54.63 ], [ -162.78, 54.48 ], [ -162.83, 54.45 ], [ -162.85, 54.42 ], [ -162.86, 54.42 ], [ -163.49, 53.89 ], [ -162.82, 53.24 ], [ -161.3, 53.32 ], [ -160.38, 54.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.71, 54.39 ], [ -167.24, 54.21 ], [ -167.9, 53.52 ], [ -167.93, 53.34 ], [ -167.28, 52.8 ], [ -165.8, 52.97 ], [ -165.0, 53.76 ], [ -165.32, 54.05 ], [ -165.37, 54.09 ], [ -165.47, 54.18 ], [ -165.58, 54.27 ], [ -165.71, 54.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.87, 53.71 ], [ -131.99, 53.25 ], [ -132.58, 53.19 ], [ -133.14, 53.91 ], [ -133.01, 54.17 ], [ -131.98, 54.03 ], [ -132.03, 54.15 ], [ -133.35, 54.32 ], [ -134.32, 53.62 ], [ -133.97, 52.77 ], [ -132.7, 52.61 ], [ -132.31, 52.88 ], [ -132.34, 53.14 ], [ -131.8, 53.24 ], [ -131.72, 53.29 ], [ -131.87, 53.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.08, 54.13 ], [ -10.09, 54.28 ], [ -11.37, 54.28 ], [ -11.98, 53.45 ], [ -11.33, 52.62 ], [ -10.1, 52.6 ], [ -9.6, 53.28 ], [ -10.15, 53.45 ], [ -10.08, 53.45 ], [ -10.12, 53.51 ], [ -9.98, 53.56 ], [ -9.86, 53.99 ], [ -10.08, 54.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 169.93, 54.28 ], [ 168.63, 54.28 ], [ 168.02, 53.45 ], [ 168.67, 52.62 ], [ 169.9, 52.6 ], [ 170.55, 53.43 ], [ 169.93, 54.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.25, 53.44 ], [ -13.98, 54.25 ], [ -15.3, 54.21 ], [ -15.82, 53.37 ], [ -15.06, 52.57 ], [ -13.81, 52.6 ], [ -13.25, 53.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.77, 54.16 ], [ 172.5, 54.21 ], [ 171.8, 53.39 ], [ 172.07, 52.96 ], [ 172.63, 52.64 ], [ 174.14, 52.7 ], [ 174.15, 52.72 ], [ 174.58, 53.4 ], [ 174.03, 53.72 ], [ 173.77, 54.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.96, 52.46 ], [ -49.86, 52.91 ], [ -50.04, 53.78 ], [ -51.37, 54.2 ], [ -52.48, 53.73 ], [ -52.25, 52.86 ], [ -50.96, 52.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.48, 53.73 ], [ -53.83, 54.11 ], [ -54.91, 53.62 ], [ -54.63, 52.76 ], [ -53.32, 52.39 ], [ -52.25, 52.86 ], [ -52.48, 53.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.24, 53.42 ], [ -158.82, 54.09 ], [ -160.38, 54.05 ], [ -161.3, 53.32 ], [ -160.67, 52.65 ], [ -159.18, 52.71 ], [ -158.24, 53.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.9, 53.31 ], [ 162.07, 54.08 ], [ 160.75, 53.99 ], [ 160.32, 53.14 ], [ 161.17, 52.39 ], [ 162.43, 52.47 ], [ 162.9, 53.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -162.82, 53.24 ], [ -163.49, 53.89 ], [ -165.0, 53.76 ], [ -165.8, 52.97 ], [ -165.11, 52.34 ], [ -163.64, 52.48 ], [ -162.82, 53.24 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.32, 53.62 ], [ -135.63, 53.76 ], [ -136.54, 53.03 ], [ -136.15, 52.18 ], [ -134.9, 52.06 ], [ -133.97, 52.77 ], [ -134.32, 53.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.04, 53.03 ], [ 158.44, 53.01 ], [ 158.57, 52.37 ], [ 158.41, 52.16 ], [ 158.65, 52.18 ], [ 159.04, 53.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.22, 52.47 ], [ -128.62, 53.17 ], [ -129.68, 53.59 ], [ -129.68, 53.58 ], [ -129.89, 53.45 ], [ -129.95, 53.42 ], [ -130.11, 53.31 ], [ -130.43, 53.1 ], [ -130.17, 52.24 ], [ -128.91, 52.04 ], [ -128.45, 52.33 ], [ -128.41, 52.35 ], [ -128.4, 52.36 ], [ -128.29, 52.43 ], [ -128.22, 52.47 ] ], [ [ -129.05, 53.21 ], [ -128.58, 53.1 ], [ -128.59, 52.6 ], [ -129.11, 52.79 ], [ -129.05, 53.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.33, 52.62 ], [ -11.98, 53.45 ], [ -13.25, 53.44 ], [ -13.81, 52.6 ], [ -13.13, 51.78 ], [ -11.93, 51.78 ], [ -11.33, 52.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.67, 52.06 ], [ 177.16, 52.76 ], [ 176.13, 53.43 ], [ 174.58, 53.4 ], [ 174.15, 52.72 ], [ 174.14, 52.7 ], [ 175.19, 52.04 ], [ 176.67, 52.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.8, 53.39 ], [ 170.55, 53.43 ], [ 169.9, 52.6 ], [ 170.18, 52.17 ], [ 170.75, 51.86 ], [ 172.23, 51.94 ], [ 172.63, 52.64 ], [ 172.07, 52.96 ], [ 171.8, 53.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.93, 53.34 ], [ -168.33, 53.2 ], [ -169.49, 53.4 ], [ -170.22, 52.8 ], [ -170.18, 52.75 ], [ -170.14, 52.71 ], [ -169.47, 51.99 ], [ -168.75, 51.88 ], [ -168.03, 51.99 ], [ -167.28, 52.8 ], [ -167.93, 53.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -173.86, 52.48 ], [ -174.68, 53.24 ], [ -176.2, 53.32 ], [ -176.83, 52.65 ], [ -176.17, 52.1 ], [ -176.03, 51.97 ], [ -176.01, 51.96 ], [ -175.99, 51.94 ], [ -175.97, 51.92 ], [ -174.51, 51.83 ], [ -174.24, 52.1 ], [ -174.0, 52.34 ], [ -173.86, 52.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.43, 53.1 ], [ -131.72, 53.29 ], [ -131.8, 53.24 ], [ -132.31, 52.88 ], [ -132.7, 52.61 ], [ -132.39, 51.75 ], [ -131.15, 51.58 ], [ -130.17, 52.24 ], [ -130.43, 53.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.17, 52.39 ], [ 160.32, 53.14 ], [ 160.04, 53.12 ], [ 159.04, 53.03 ], [ 158.65, 52.18 ], [ 159.52, 51.45 ], [ 160.75, 51.54 ], [ 161.17, 52.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.22, 52.8 ], [ -171.7, 52.97 ], [ -172.35, 52.3 ], [ -171.62, 51.56 ], [ -170.18, 51.38 ], [ -169.47, 51.99 ], [ -170.14, 52.71 ], [ -170.18, 52.75 ], [ -170.22, 52.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.11, 52.34 ], [ -165.8, 52.97 ], [ -167.28, 52.8 ], [ -168.03, 51.99 ], [ -167.32, 51.38 ], [ -165.88, 51.56 ], [ -165.11, 52.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.96, 52.46 ], [ -52.25, 52.86 ], [ -53.32, 52.39 ], [ -53.07, 51.52 ], [ -51.82, 51.12 ], [ -50.77, 51.58 ], [ -50.96, 52.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.7, 52.61 ], [ -133.97, 52.77 ], [ -134.9, 52.06 ], [ -134.55, 51.21 ], [ -133.32, 51.06 ], [ -132.39, 51.75 ], [ -132.7, 52.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -176.03, 51.97 ], [ -176.17, 52.1 ], [ -176.83, 52.65 ], [ -178.32, 52.71 ], [ -178.9, 52.03 ], [ -178.03, 51.31 ], [ -176.58, 51.25 ], [ -176.09, 51.79 ], [ -176.04, 51.85 ], [ -176.02, 51.86 ], [ -175.98, 51.91 ], [ -175.97, 51.92 ], [ -175.99, 51.94 ], [ -176.01, 51.96 ], [ -176.03, 51.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.19, 52.04 ], [ 174.14, 52.7 ], [ 174.14, 52.7 ], [ 172.63, 52.64 ], [ 172.23, 51.94 ], [ 173.29, 51.29 ], [ 174.74, 51.34 ], [ 175.19, 52.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.46, 50.95 ], [ -127.79, 51.2 ], [ -127.88, 51.67 ], [ -127.63, 52.28 ], [ -128.22, 52.47 ], [ -128.29, 52.43 ], [ -128.4, 52.36 ], [ -128.41, 52.35 ], [ -128.45, 52.33 ], [ -128.91, 52.04 ], [ -128.68, 51.18 ], [ -127.46, 50.95 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.4, 51.85 ], [ -10.45, 52.1 ], [ -10.1, 52.6 ], [ -11.33, 52.62 ], [ -11.93, 51.78 ], [ -11.63, 51.35 ], [ -11.06, 51.05 ], [ -9.61, 51.15 ], [ -9.41, 51.55 ], [ -10.16, 51.61 ], [ -9.91, 51.81 ], [ -9.94, 51.8 ], [ -10.4, 51.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.13, 51.78 ], [ -13.81, 52.6 ], [ -15.06, 52.57 ], [ -15.57, 51.73 ], [ -14.87, 50.91 ], [ -13.68, 50.93 ], [ -13.13, 51.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -172.35, 52.3 ], [ -173.86, 52.48 ], [ -174.0, 52.34 ], [ -174.24, 52.1 ], [ -174.51, 51.83 ], [ -173.72, 51.06 ], [ -172.29, 50.93 ], [ -171.62, 51.56 ], [ -172.35, 52.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.91, 52.04 ], [ -130.17, 52.24 ], [ -131.15, 51.58 ], [ -130.88, 50.72 ], [ -129.66, 50.53 ], [ -128.68, 51.18 ], [ -128.91, 52.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.52, 51.45 ], [ 158.65, 52.18 ], [ 158.41, 52.16 ], [ 157.89, 51.62 ], [ 157.11, 51.16 ], [ 157.93, 50.48 ], [ 159.13, 50.59 ], [ 159.52, 51.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74, 51.34 ], [ 175.72, 50.66 ], [ 177.14, 50.68 ], [ 177.64, 51.38 ], [ 176.67, 52.06 ], [ 175.19, 52.04 ], [ 174.74, 51.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.51, 51.83 ], [ -175.97, 51.92 ], [ -175.98, 51.91 ], [ -176.02, 51.86 ], [ -176.04, 51.85 ], [ -176.09, 51.79 ], [ -176.58, 51.25 ], [ -175.77, 50.51 ], [ -174.36, 50.41 ], [ -173.72, 51.06 ], [ -174.51, 51.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.93, 51.78 ], [ -13.13, 51.78 ], [ -13.68, 50.93 ], [ -13.37, 50.51 ], [ -12.8, 50.21 ], [ -11.38, 50.33 ], [ -11.06, 51.05 ], [ -11.63, 51.35 ], [ -11.93, 51.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.15, 51.58 ], [ -132.39, 51.75 ], [ -133.32, 51.06 ], [ -133.02, 50.21 ], [ -131.82, 50.04 ], [ -130.88, 50.72 ], [ -131.15, 51.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.39, 50.28 ], [ -49.54, 51.16 ], [ -50.77, 51.58 ], [ -51.82, 51.12 ], [ -51.63, 50.25 ], [ -50.43, 49.83 ], [ -49.39, 50.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -176.58, 51.25 ], [ -178.03, 51.31 ], [ -178.6, 50.63 ], [ -177.77, 49.9 ], [ -176.38, 49.84 ], [ -175.77, 50.51 ], [ -176.58, 51.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.88, 50.7 ], [ 140.76, 51.24 ], [ 140.44, 50.71 ], [ 140.54, 50.12 ], [ 140.41, 49.87 ], [ 140.68, 49.49 ], [ 141.81, 49.83 ], [ 141.88, 50.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.11, 51.16 ], [ 155.82, 51.06 ], [ 156.17, 50.51 ], [ 155.57, 50.16 ], [ 156.4, 49.5 ], [ 157.59, 49.63 ], [ 157.93, 50.48 ], [ 157.11, 51.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.37, 50.03 ], [ -127.8, 50.21 ], [ -128.41, 50.76 ], [ -127.46, 50.95 ], [ -128.68, 51.18 ], [ -129.66, 50.53 ], [ -129.43, 49.67 ], [ -128.24, 49.46 ], [ -127.41, 50.0 ], [ -127.37, 50.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93, 49.8 ], [ -8.55, 50.52 ], [ -9.61, 51.15 ], [ -11.06, 51.05 ], [ -11.38, 50.33 ], [ -10.32, 49.71 ], [ -8.93, 49.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.15, 49.66 ], [ 142.14, 50.38 ], [ 141.88, 50.7 ], [ 141.81, 49.83 ], [ 142.15, 49.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.8, 50.21 ], [ -13.37, 50.51 ], [ -13.68, 50.93 ], [ -14.87, 50.91 ], [ -15.37, 50.06 ], [ -15.05, 49.64 ], [ -14.48, 49.36 ], [ -13.09, 49.49 ], [ -12.8, 50.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.66, 50.53 ], [ -130.88, 50.72 ], [ -131.82, 50.04 ], [ -131.54, 49.19 ], [ -130.37, 49.01 ], [ -129.43, 49.67 ], [ -129.66, 50.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.41, 48.88 ], [ 159.57, 48.98 ], [ 159.95, 49.84 ], [ 159.13, 50.59 ], [ 157.93, 50.48 ], [ 157.59, 49.63 ], [ 158.41, 48.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.32, 49.71 ], [ -11.38, 50.33 ], [ -12.8, 50.21 ], [ -13.09, 49.49 ], [ -12.02, 48.88 ], [ -10.66, 48.99 ], [ -10.32, 49.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.09, 48.97 ], [ -48.21, 49.85 ], [ -49.39, 50.28 ], [ -50.43, 49.83 ], [ -50.27, 48.95 ], [ -49.11, 48.53 ], [ -48.09, 48.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -43.72, 48.88 ], [ -43.76, 49.76 ], [ -44.9, 50.23 ], [ -45.98, 49.82 ], [ -45.9, 48.95 ], [ -44.78, 48.48 ], [ -43.72, 48.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.57, 50.16 ], [ 154.32, 50.04 ], [ 154.04, 49.19 ], [ 154.94, 48.49 ], [ 156.1, 48.64 ], [ 156.4, 49.5 ], [ 155.57, 50.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.3, 50.04 ], [ -127.37, 50.03 ], [ -127.41, 50.0 ], [ -128.24, 49.46 ], [ -128.04, 48.6 ], [ -126.88, 48.37 ], [ -125.9, 48.99 ], [ -126.08, 49.4 ], [ -126.43, 49.44 ], [ -126.78, 49.9 ], [ -127.3, 50.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.7, 48.09 ], [ 142.16, 48.23 ], [ 141.87, 48.68 ], [ 142.15, 49.66 ], [ 141.81, 49.83 ], [ 140.68, 49.49 ], [ 140.64, 48.62 ], [ 141.7, 48.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.93, 49.15 ], [ -8.93, 49.8 ], [ -10.32, 49.71 ], [ -10.66, 48.99 ], [ -9.67, 48.35 ], [ -8.33, 48.42 ], [ -7.93, 49.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.24, 49.46 ], [ -129.43, 49.67 ], [ -130.37, 49.01 ], [ -130.13, 48.15 ], [ -128.98, 47.96 ], [ -128.04, 48.6 ], [ -128.24, 49.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.41, 48.88 ], [ 157.59, 49.63 ], [ 156.4, 49.5 ], [ 156.1, 48.64 ], [ 156.94, 47.91 ], [ 158.07, 48.02 ], [ 158.41, 48.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.96, 48.17 ], [ 145.07, 49.04 ], [ 144.29, 49.25 ], [ 143.32, 49.3 ], [ 142.97, 49.1 ], [ 142.81, 48.42 ], [ 143.84, 47.87 ], [ 144.96, 48.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.94, 49.2 ], [ -123.41, 48.69 ], [ -123.64, 48.31 ], [ -124.72, 48.6 ], [ -124.68, 48.39 ], [ -123.97, 48.16 ], [ -122.71, 48.03 ], [ -122.47, 48.25 ], [ -122.54, 48.78 ], [ -123.21, 49.2 ], [ -123.94, 49.2 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.64, 48.53 ], [ -6.57, 49.2 ], [ -7.93, 49.15 ], [ -8.33, 48.42 ], [ -7.39, 47.76 ], [ -6.07, 47.81 ], [ -5.64, 48.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.37, 49.01 ], [ -131.54, 49.19 ], [ -132.44, 48.49 ], [ -132.17, 47.64 ], [ -131.03, 47.47 ], [ -130.13, 48.15 ], [ -130.37, 49.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.94, 48.49 ], [ 154.04, 49.19 ], [ 152.87, 49.01 ], [ 152.63, 48.15 ], [ 153.53, 47.47 ], [ 154.67, 47.64 ], [ 154.94, 48.49 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.72, 48.6 ], [ -125.19, 48.83 ], [ -125.9, 48.99 ], [ -126.88, 48.37 ], [ -126.7, 47.52 ], [ -125.57, 47.27 ], [ -124.59, 47.87 ], [ -124.68, 48.39 ], [ -124.72, 48.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.67, 48.35 ], [ -10.66, 48.99 ], [ -12.02, 48.88 ], [ -12.34, 48.15 ], [ -11.34, 47.52 ], [ -10.03, 47.62 ], [ -9.67, 48.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.95, 48.52 ], [ -48.09, 48.97 ], [ -49.11, 48.53 ], [ -48.98, 47.65 ], [ -47.86, 47.21 ], [ -46.86, 47.65 ], [ -46.95, 48.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.11, 48.53 ], [ -50.27, 48.95 ], [ -51.27, 48.49 ], [ -51.1, 47.62 ], [ -49.97, 47.2 ], [ -48.98, 47.65 ], [ -49.11, 48.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.78, 48.48 ], [ -45.9, 48.95 ], [ -46.95, 48.52 ], [ -46.86, 47.65 ], [ -45.76, 47.19 ], [ -44.73, 47.6 ], [ -44.78, 48.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -43.65, 47.13 ], [ -42.6, 47.52 ], [ -42.62, 48.39 ], [ -43.72, 48.88 ], [ -44.78, 48.48 ], [ -44.73, 47.6 ], [ -43.65, 47.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.94, 47.91 ], [ 156.1, 48.64 ], [ 154.94, 48.49 ], [ 154.67, 47.64 ], [ 155.51, 46.92 ], [ 156.63, 47.05 ], [ 156.94, 47.91 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.7, 48.09 ], [ 140.64, 48.62 ], [ 140.17, 48.47 ], [ 139.53, 47.96 ], [ 139.52, 47.39 ], [ 140.56, 46.87 ], [ 141.64, 47.22 ], [ 141.7, 48.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.88, 48.37 ], [ -128.04, 48.6 ], [ -128.98, 47.96 ], [ -128.77, 47.1 ], [ -127.64, 46.89 ], [ -126.7, 47.52 ], [ -126.88, 48.37 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.7, 47.81 ], [ -3.67, 47.82 ], [ -3.67, 47.82 ], [ -3.7, 47.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.78, 48.37 ], [ -4.75, 48.55 ], [ -5.64, 48.53 ], [ -6.07, 47.81 ], [ -5.2, 47.12 ], [ -3.89, 47.15 ], [ -3.51, 47.74 ], [ -3.7, 47.81 ], [ -4.43, 47.97 ], [ -4.52, 48.3 ], [ -4.78, 48.37 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.4, 47.3 ], [ -57.51, 47.64 ], [ -58.06, 47.7 ], [ -59.18, 47.57 ], [ -59.42, 47.89 ], [ -58.6, 48.43 ], [ -58.9, 48.51 ], [ -59.8, 47.98 ], [ -59.48, 47.12 ], [ -58.29, 46.78 ], [ -57.4, 47.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.39, 47.76 ], [ -8.33, 48.42 ], [ -9.67, 48.35 ], [ -10.03, 47.62 ], [ -9.09, 46.96 ], [ -7.8, 47.03 ], [ -7.39, 47.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.03, 47.01 ], [ 141.97, 47.62 ], [ 142.16, 48.23 ], [ 141.7, 48.09 ], [ 141.64, 47.22 ], [ 142.03, 47.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.75, 47.0 ], [ 143.84, 47.87 ], [ 142.81, 48.42 ], [ 142.55, 48.07 ], [ 142.57, 47.68 ], [ 143.02, 47.25 ], [ 143.19, 46.84 ], [ 143.75, 47.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.64, 47.55 ], [ -61.77, 47.41 ], [ -61.54, 46.91 ], [ -60.93, 46.75 ], [ -60.61, 47.05 ], [ -60.35, 46.59 ], [ -59.48, 47.12 ], [ -59.8, 47.98 ], [ -61.05, 48.3 ], [ -61.92, 47.75 ], [ -61.64, 47.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.74, 46.44 ], [ 145.84, 46.73 ], [ 145.97, 47.6 ], [ 144.96, 48.17 ], [ 143.84, 47.87 ], [ 143.75, 47.0 ], [ 144.74, 46.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.53, 47.47 ], [ 152.63, 48.15 ], [ 151.48, 47.96 ], [ 151.27, 47.1 ], [ 152.17, 46.44 ], [ 153.29, 46.62 ], [ 153.53, 47.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.98, 47.96 ], [ -130.13, 48.15 ], [ -131.03, 47.47 ], [ -130.79, 46.62 ], [ -129.67, 46.44 ], [ -128.77, 47.1 ], [ -128.98, 47.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.08, 46.29 ], [ -123.89, 46.54 ], [ -124.43, 47.75 ], [ -124.59, 47.87 ], [ -125.57, 47.27 ], [ -125.42, 46.41 ], [ -124.31, 46.15 ], [ -124.08, 46.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.76, 46.48 ], [ -2.15, 46.89 ], [ -1.98, 47.03 ], [ -2.95, 47.55 ], [ -3.51, 47.74 ], [ -3.89, 47.15 ], [ -3.06, 46.45 ], [ -1.77, 46.46 ], [ -1.76, 46.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.2, 47.12 ], [ -6.07, 47.81 ], [ -7.39, 47.76 ], [ -7.8, 47.03 ], [ -6.91, 46.36 ], [ -5.63, 46.4 ], [ -5.2, 47.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.95, 46.63 ], [ 39.31, 47.06 ], [ 38.86, 47.17 ], [ 37.78, 47.09 ], [ 37.95, 46.63 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.76, 47.19 ], [ -46.86, 47.65 ], [ -47.86, 47.21 ], [ -47.76, 46.33 ], [ -46.68, 45.88 ], [ -45.69, 46.31 ], [ -45.76, 47.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.03, 47.47 ], [ -132.17, 47.64 ], [ -133.01, 46.92 ], [ -132.73, 46.06 ], [ -131.64, 45.92 ], [ -130.79, 46.62 ], [ -131.03, 47.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 155.51, 46.92 ], [ 154.67, 47.64 ], [ 153.53, 47.47 ], [ 153.29, 46.62 ], [ 154.14, 45.92 ], [ 155.23, 46.06 ], [ 155.51, 46.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.91, 46.35 ], [ 32.04, 46.41 ], [ 31.84, 46.48 ], [ 31.91, 46.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.81, 46.53 ], [ 32.16, 46.5 ], [ 32.0, 46.65 ], [ 31.76, 46.63 ], [ 31.81, 46.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -43.65, 47.13 ], [ -44.73, 47.6 ], [ -45.76, 47.19 ], [ -45.69, 46.31 ], [ -44.63, 45.84 ], [ -43.62, 46.25 ], [ -43.65, 47.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -125.57, 47.27 ], [ -126.7, 47.52 ], [ -127.64, 46.89 ], [ -127.46, 46.03 ], [ -126.36, 45.8 ], [ -125.42, 46.41 ], [ -125.57, 47.27 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.14, 46.89 ], [ 149.2, 47.52 ], [ 148.07, 47.27 ], [ 147.92, 46.41 ], [ 148.86, 45.8 ], [ 149.96, 46.03 ], [ 150.14, 46.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.97, 46.07 ], [ -56.23, 46.94 ], [ -57.4, 47.3 ], [ -58.29, 46.78 ], [ -58.0, 45.91 ], [ -56.86, 45.56 ], [ -55.97, 46.07 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 46.4 ], [ 37.98, 46.4 ], [ 37.99, 46.4 ], [ 38.0, 46.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.78, 47.09 ], [ 36.92, 46.82 ], [ 35.94, 46.66 ], [ 35.55, 46.47 ], [ 35.77, 45.93 ], [ 37.03, 45.81 ], [ 37.96, 46.38 ], [ 37.95, 46.63 ], [ 37.78, 47.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.03, 47.01 ], [ 141.64, 47.22 ], [ 140.56, 46.87 ], [ 140.52, 46.0 ], [ 141.53, 45.48 ], [ 142.59, 45.81 ], [ 142.66, 46.68 ], [ 142.48, 46.66 ], [ 142.19, 46.04 ], [ 141.92, 46.04 ], [ 141.82, 46.48 ], [ 142.03, 47.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12, 45.86 ], [ -1.13, 46.26 ], [ -1.76, 46.48 ], [ -1.77, 46.46 ], [ -1.54, 46.25 ], [ -1.49, 46.2 ], [ -1.26, 45.99 ], [ -1.23, 45.97 ], [ -1.12, 45.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.06, 46.45 ], [ -3.89, 47.15 ], [ -5.2, 47.12 ], [ -5.63, 46.4 ], [ -4.8, 45.71 ], [ -3.53, 45.74 ], [ -3.06, 46.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.29, 46.78 ], [ -59.48, 47.12 ], [ -60.35, 46.59 ], [ -60.21, 46.22 ], [ -59.87, 45.96 ], [ -60.02, 45.73 ], [ -58.86, 45.39 ], [ -58.0, 45.91 ], [ -58.29, 46.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.64, 46.89 ], [ -128.77, 47.1 ], [ -129.67, 46.44 ], [ -129.46, 45.58 ], [ -128.37, 45.38 ], [ -127.46, 46.03 ], [ -127.64, 46.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.17, 46.44 ], [ 151.27, 47.1 ], [ 150.14, 46.89 ], [ 149.96, 46.03 ], [ 149.98, 46.02 ], [ 150.15, 45.9 ], [ 150.87, 45.38 ], [ 151.96, 45.58 ], [ 152.17, 46.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.81, 45.64 ], [ 29.85, 45.66 ], [ 29.88, 45.68 ], [ 29.87, 45.68 ], [ 29.83, 45.66 ], [ 29.81, 45.65 ], [ 29.81, 45.64 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.76, 46.63 ], [ 30.75, 46.54 ], [ 30.61, 46.22 ], [ 29.82, 45.64 ], [ 29.82, 45.63 ], [ 31.08, 45.57 ], [ 31.92, 46.19 ], [ 31.92, 46.2 ], [ 31.97, 46.23 ], [ 31.91, 46.35 ], [ 31.84, 46.48 ], [ 31.81, 46.53 ], [ 31.76, 46.63 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.74, 46.44 ], [ 143.75, 47.0 ], [ 143.19, 46.84 ], [ 142.66, 46.68 ], [ 142.59, 45.81 ], [ 143.57, 45.27 ], [ 144.64, 45.58 ], [ 144.74, 46.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.39, 45.82 ], [ 33.66, 45.87 ], [ 33.24, 46.14 ], [ 33.39, 45.82 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.55, 46.47 ], [ 34.81, 46.17 ], [ 35.18, 45.54 ], [ 35.77, 45.93 ], [ 35.55, 46.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.97, 45.24 ], [ -123.97, 45.89 ], [ -124.08, 46.29 ], [ -124.31, 46.15 ], [ -124.18, 45.29 ], [ -123.97, 45.24 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.67, 46.44 ], [ -130.79, 46.62 ], [ -131.64, 45.92 ], [ -131.39, 45.05 ], [ -130.32, 44.9 ], [ -129.46, 45.58 ], [ -129.67, 46.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.14, 45.92 ], [ 153.29, 46.62 ], [ 152.17, 46.44 ], [ 151.96, 45.58 ], [ 152.82, 44.9 ], [ 153.89, 45.05 ], [ 154.14, 45.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.77, 46.46 ], [ -3.06, 46.45 ], [ -3.53, 45.74 ], [ -2.73, 45.03 ], [ -1.48, 45.04 ], [ -1.07, 45.63 ], [ -1.12, 45.86 ], [ -1.23, 45.97 ], [ -1.26, 45.99 ], [ -1.49, 46.2 ], [ -1.54, 46.25 ], [ -1.77, 46.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.21, 45.33 ], [ 38.29, 46.26 ], [ 38.0, 46.4 ], [ 37.99, 46.4 ], [ 37.96, 46.38 ], [ 37.03, 45.81 ], [ 37.21, 45.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.31, 46.15 ], [ -125.42, 46.41 ], [ -126.36, 45.8 ], [ -126.2, 44.94 ], [ -125.12, 44.69 ], [ -124.18, 45.29 ], [ -124.31, 46.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.77, 45.32 ], [ 147.71, 45.01 ], [ 147.48, 44.78 ], [ 147.62, 44.69 ], [ 148.7, 44.94 ], [ 148.77, 45.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.81, 45.55 ], [ 148.86, 45.8 ], [ 147.92, 46.41 ], [ 146.81, 46.15 ], [ 146.68, 45.29 ], [ 147.32, 44.89 ], [ 147.74, 45.19 ], [ 148.34, 45.28 ], [ 148.81, 45.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.81, 45.65 ], [ 29.62, 45.47 ], [ 29.82, 45.63 ], [ 29.82, 45.64 ], [ 29.81, 45.64 ], [ 29.81, 45.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.68, 45.88 ], [ -47.76, 46.33 ], [ -48.73, 45.89 ], [ -48.61, 45.01 ], [ -47.56, 44.57 ], [ -46.6, 45.0 ], [ -46.68, 45.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.73, 45.89 ], [ -49.82, 46.32 ], [ -50.77, 45.86 ], [ -50.62, 44.98 ], [ -49.55, 44.55 ], [ -48.61, 45.01 ], [ -48.73, 45.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.63, 45.84 ], [ -45.69, 46.31 ], [ -46.68, 45.88 ], [ -46.6, 45.0 ], [ -45.56, 44.54 ], [ -44.58, 44.96 ], [ -44.63, 45.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.24, 46.14 ], [ 32.53, 46.07 ], [ 31.97, 46.23 ], [ 31.92, 46.2 ], [ 31.92, 46.19 ], [ 31.08, 45.57 ], [ 31.46, 44.83 ], [ 32.7, 44.75 ], [ 33.25, 45.16 ], [ 33.0, 45.35 ], [ 32.5, 45.42 ], [ 33.39, 45.82 ], [ 33.24, 46.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.62, 44.91 ], [ -52.81, 45.79 ], [ -53.93, 46.18 ], [ -54.84, 45.69 ], [ -54.61, 44.81 ], [ -53.51, 44.43 ], [ -52.62, 44.91 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84, 45.69 ], [ -55.97, 46.07 ], [ -56.86, 45.56 ], [ -56.6, 44.68 ], [ -55.49, 44.31 ], [ -54.61, 44.81 ], [ -54.84, 45.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.64, 45.92 ], [ -132.73, 46.06 ], [ -133.53, 45.31 ], [ -133.23, 44.43 ], [ -132.19, 44.32 ], [ -131.39, 45.05 ], [ -131.64, 45.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.36, 45.8 ], [ -127.46, 46.03 ], [ -128.37, 45.38 ], [ -128.18, 44.53 ], [ -127.11, 44.31 ], [ -126.2, 44.94 ], [ -126.36, 45.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.98, 46.02 ], [ 149.96, 46.03 ], [ 148.86, 45.8 ], [ 148.81, 45.55 ], [ 148.77, 45.32 ], [ 148.7, 44.94 ], [ 149.6, 44.31 ], [ 150.68, 44.53 ], [ 150.87, 45.38 ], [ 150.15, 45.9 ], [ 149.98, 46.02 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.53, 45.48 ], [ 140.52, 46.0 ], [ 139.48, 45.64 ], [ 139.46, 44.77 ], [ 140.45, 44.25 ], [ 141.47, 44.61 ], [ 141.53, 45.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.28, 45.12 ], [ 14.33, 45.18 ], [ 14.46, 45.32 ], [ 14.33, 45.35 ], [ 14.17, 45.0 ], [ 14.28, 45.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41, 45.73 ], [ 13.39, 45.69 ], [ 13.44, 45.69 ], [ 13.41, 45.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.51, 45.75 ], [ 13.13, 45.77 ], [ 12.16, 45.29 ], [ 12.48, 44.85 ], [ 12.26, 44.64 ], [ 12.52, 44.39 ], [ 13.79, 44.56 ], [ 14.14, 44.96 ], [ 13.61, 45.11 ], [ 13.51, 45.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.03, 45.81 ], [ 35.77, 45.93 ], [ 35.18, 45.54 ], [ 35.51, 45.28 ], [ 36.35, 45.48 ], [ 36.43, 45.26 ], [ 36.44, 45.08 ], [ 35.84, 45.0 ], [ 35.44, 45.09 ], [ 35.04, 44.83 ], [ 35.15, 44.55 ], [ 36.37, 44.44 ], [ 37.22, 45.0 ], [ 36.63, 45.14 ], [ 36.92, 45.43 ], [ 37.21, 45.33 ], [ 37.03, 45.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.86, 45.56 ], [ -58.0, 45.91 ], [ -58.86, 45.39 ], [ -58.57, 44.52 ], [ -57.45, 44.17 ], [ -56.6, 44.68 ], [ -56.86, 45.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.57, 45.27 ], [ 142.59, 45.81 ], [ 141.53, 45.48 ], [ 141.47, 44.61 ], [ 141.76, 44.45 ], [ 141.58, 45.17 ], [ 141.94, 45.52 ], [ 142.74, 44.76 ], [ 143.36, 44.36 ], [ 143.49, 44.4 ], [ 143.57, 45.27 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23, 44.81 ], [ -1.07, 45.63 ], [ -1.48, 45.04 ], [ -1.23, 44.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.73, 45.03 ], [ -3.53, 45.74 ], [ -4.8, 45.71 ], [ -5.23, 44.99 ], [ -4.43, 44.3 ], [ -3.2, 44.32 ], [ -2.73, 45.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.48, 44.95 ], [ -7.32, 45.63 ], [ -8.58, 45.57 ], [ -8.96, 44.83 ], [ -8.12, 44.16 ], [ -6.89, 44.22 ], [ -6.48, 44.95 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.08, 45.57 ], [ 29.82, 45.63 ], [ 29.62, 45.47 ], [ 29.77, 45.33 ], [ 29.56, 44.83 ], [ 29.09, 44.75 ], [ 29.39, 44.22 ], [ 30.62, 44.16 ], [ 31.46, 44.83 ], [ 31.08, 45.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.37, 45.38 ], [ -129.46, 45.58 ], [ -130.32, 44.9 ], [ -130.1, 44.03 ], [ -129.04, 43.86 ], [ -128.18, 44.53 ], [ -128.37, 45.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.82, 44.9 ], [ 151.96, 45.58 ], [ 150.87, 45.38 ], [ 150.68, 44.53 ], [ 151.54, 43.86 ], [ 152.6, 44.03 ], [ 152.82, 44.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.6, 45.01 ], [ 144.64, 45.58 ], [ 143.57, 45.27 ], [ 143.49, 44.4 ], [ 143.93, 44.15 ], [ 144.67, 43.92 ], [ 144.84, 43.96 ], [ 145.24, 44.08 ], [ 145.49, 44.15 ], [ 145.6, 45.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.02, 44.14 ], [ 38.76, 44.29 ], [ 38.8, 44.17 ], [ 39.02, 44.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.19, 44.02 ], [ 8.18, 44.01 ], [ 8.17, 44.0 ], [ 8.19, 44.02 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.23, 44.06 ], [ 8.33, 44.17 ], [ 8.28, 44.15 ], [ 8.23, 44.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.33, 45.18 ], [ 14.28, 45.12 ], [ 14.17, 45.0 ], [ 14.14, 44.96 ], [ 13.79, 44.56 ], [ 14.39, 43.93 ], [ 15.04, 44.0 ], [ 15.07, 44.0 ], [ 15.15, 44.01 ], [ 15.16, 44.01 ], [ 15.23, 44.02 ], [ 15.25, 44.02 ], [ 15.26, 44.02 ], [ 15.27, 44.02 ], [ 15.35, 44.03 ], [ 15.28, 44.36 ], [ 14.89, 44.7 ], [ 14.85, 45.1 ], [ 14.46, 45.32 ], [ 14.33, 45.18 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.04, 44.83 ], [ 34.45, 44.71 ], [ 34.34, 44.55 ], [ 33.74, 44.39 ], [ 33.54, 44.63 ], [ 33.61, 44.99 ], [ 33.25, 45.16 ], [ 32.7, 44.75 ], [ 33.05, 44.0 ], [ 34.26, 43.91 ], [ 35.15, 44.55 ], [ 35.04, 44.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.97, 45.24 ], [ -124.18, 45.29 ], [ -125.12, 44.69 ], [ -124.98, 43.84 ], [ -124.21, 43.64 ], [ -123.97, 45.24 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.32, 44.89 ], [ 146.68, 45.29 ], [ 145.6, 45.01 ], [ 145.49, 44.15 ], [ 145.69, 44.03 ], [ 145.79, 43.96 ], [ 146.31, 43.64 ], [ 146.34, 43.62 ], [ 146.42, 43.57 ], [ 147.48, 43.84 ], [ 147.62, 44.69 ], [ 147.48, 44.78 ], [ 147.32, 44.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.76, 44.29 ], [ 38.23, 44.41 ], [ 37.46, 44.71 ], [ 37.22, 45.0 ], [ 36.37, 44.44 ], [ 36.67, 43.68 ], [ 37.87, 43.55 ], [ 38.8, 44.17 ], [ 38.76, 44.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.32, 44.9 ], [ -131.39, 45.05 ], [ -132.19, 44.32 ], [ -131.93, 43.44 ], [ -130.91, 43.31 ], [ -130.1, 44.03 ], [ -130.32, 44.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48, 45.04 ], [ -2.73, 45.03 ], [ -3.2, 44.32 ], [ -2.43, 43.61 ], [ -1.46, 43.63 ], [ -1.19, 44.66 ], [ -1.23, 44.81 ], [ -1.48, 45.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.56, 44.57 ], [ -48.61, 45.01 ], [ -49.55, 44.55 ], [ -49.41, 43.67 ], [ -48.38, 43.23 ], [ -47.46, 43.68 ], [ -47.56, 44.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.43, 44.3 ], [ -5.23, 44.99 ], [ -6.48, 44.95 ], [ -6.89, 44.22 ], [ -6.12, 43.56 ], [ -5.41, 43.56 ], [ -4.87, 43.57 ], [ -4.43, 44.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.39, 44.22 ], [ 29.09, 44.75 ], [ 28.63, 44.31 ], [ 28.61, 43.55 ], [ 29.39, 44.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -125.12, 44.69 ], [ -126.2, 44.94 ], [ -127.11, 44.31 ], [ -126.94, 43.46 ], [ -125.89, 43.23 ], [ -124.98, 43.84 ], [ -125.12, 44.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.6, 44.31 ], [ 148.7, 44.94 ], [ 147.62, 44.69 ], [ 147.48, 43.84 ], [ 148.39, 43.23 ], [ 149.44, 43.46 ], [ 149.6, 44.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.37, 43.62 ], [ -51.53, 44.51 ], [ -52.62, 44.91 ], [ -53.51, 44.43 ], [ -53.31, 43.54 ], [ -52.25, 43.14 ], [ -51.37, 43.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.64, 43.44 ], [ 16.17, 43.49 ], [ 16.23, 43.42 ], [ 16.27, 43.41 ], [ 16.64, 43.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.12, 44.16 ], [ -8.96, 44.83 ], [ -10.2, 44.75 ], [ -10.55, 44.0 ], [ -9.7, 43.34 ], [ -8.5, 43.42 ], [ -8.12, 44.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.7, 44.75 ], [ 31.46, 44.83 ], [ 30.62, 44.16 ], [ 31.0, 43.42 ], [ 32.2, 43.34 ], [ 33.05, 44.0 ], [ 32.7, 44.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.51, 44.43 ], [ -54.61, 44.81 ], [ -55.49, 44.31 ], [ -55.25, 43.43 ], [ -54.17, 43.05 ], [ -53.31, 43.54 ], [ -53.51, 44.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.45, 44.25 ], [ 139.46, 44.77 ], [ 138.44, 44.39 ], [ 138.44, 43.51 ], [ 139.42, 43.01 ], [ 140.41, 43.38 ], [ 140.45, 44.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.49, 44.31 ], [ -56.6, 44.68 ], [ -57.45, 44.17 ], [ -57.18, 43.3 ], [ -56.09, 42.93 ], [ -55.25, 43.43 ], [ -55.49, 44.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.76, 44.45 ], [ 141.47, 44.61 ], [ 140.45, 44.25 ], [ 140.41, 43.38 ], [ 140.46, 43.35 ], [ 141.16, 43.14 ], [ 141.42, 43.32 ], [ 141.33, 43.73 ], [ 141.66, 44.01 ], [ 141.76, 44.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.27, 43.25 ], [ 40.22, 43.32 ], [ 40.25, 43.25 ], [ 40.27, 43.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.42, 43.4 ], [ 10.25, 43.85 ], [ 9.23, 44.35 ], [ 8.76, 44.43 ], [ 8.33, 44.17 ], [ 8.23, 44.06 ], [ 8.19, 44.02 ], [ 8.17, 44.0 ], [ 8.11, 43.93 ], [ 8.76, 43.17 ], [ 9.79, 43.03 ], [ 9.82, 43.03 ], [ 10.01, 43.0 ], [ 10.42, 43.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.39, 43.93 ], [ 13.79, 44.56 ], [ 12.52, 44.39 ], [ 12.39, 44.23 ], [ 13.63, 43.5 ], [ 13.78, 43.22 ], [ 14.39, 43.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.37, 44.44 ], [ 35.15, 44.55 ], [ 34.26, 43.91 ], [ 34.6, 43.16 ], [ 35.79, 43.05 ], [ 36.67, 43.68 ], [ 36.37, 44.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.11, 44.31 ], [ -128.18, 44.53 ], [ -129.04, 43.86 ], [ -128.85, 43.0 ], [ -127.81, 42.81 ], [ -126.94, 43.46 ], [ -127.11, 44.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.45, 44.17 ], [ -58.57, 44.52 ], [ -59.4, 44.0 ], [ -59.1, 43.13 ], [ -58.0, 42.78 ], [ -57.18, 43.3 ], [ -57.45, 44.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.88, 42.84 ], [ 144.34, 42.99 ], [ 144.35, 43.0 ], [ 143.88, 42.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.93, 44.15 ], [ 143.49, 44.4 ], [ 143.36, 44.36 ], [ 143.93, 44.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4, 44.0 ], [ -60.53, 44.33 ], [ -61.34, 43.79 ], [ -61.01, 42.93 ], [ -59.9, 42.6 ], [ -59.1, 43.13 ], [ -59.4, 44.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.43, 43.61 ], [ -3.2, 44.32 ], [ -4.43, 44.3 ], [ -4.87, 43.57 ], [ -4.69, 43.41 ], [ -3.56, 43.51 ], [ -3.17, 43.36 ], [ -2.58, 43.39 ], [ -2.43, 43.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96, 43.43 ], [ 3.98, 43.55 ], [ 3.07, 43.05 ], [ 3.23, 42.88 ], [ 4.46, 42.83 ], [ 4.96, 43.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.12, 43.56 ], [ -6.89, 44.22 ], [ -8.12, 44.16 ], [ -8.5, 43.42 ], [ -8.45, 43.37 ], [ -8.05, 43.71 ], [ -7.46, 43.73 ], [ -7.2, 43.56 ], [ -6.12, 43.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.62, 44.16 ], [ 29.39, 44.22 ], [ 28.61, 43.55 ], [ 28.6, 43.51 ], [ 29.0, 42.8 ], [ 30.19, 42.75 ], [ 31.0, 43.42 ], [ 30.62, 44.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.02, 44.14 ], [ 38.8, 44.17 ], [ 37.87, 43.55 ], [ 38.15, 42.79 ], [ 39.32, 42.64 ], [ 40.25, 43.25 ], [ 40.22, 43.32 ], [ 39.99, 43.38 ], [ 39.02, 44.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.36, 42.97 ], [ 144.35, 43.0 ], [ 144.34, 42.99 ], [ 144.36, 42.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.67, 43.92 ], [ 144.79, 43.93 ], [ 144.84, 43.96 ], [ 144.67, 43.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.47, 43.27 ], [ 144.38, 42.96 ], [ 145.27, 42.42 ], [ 146.3, 42.71 ], [ 146.42, 43.57 ], [ 146.34, 43.62 ], [ 146.31, 43.64 ], [ 145.79, 43.96 ], [ 145.69, 44.03 ], [ 145.49, 44.15 ], [ 145.24, 44.08 ], [ 145.07, 43.75 ], [ 145.47, 43.27 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.34, 43.79 ], [ -62.48, 44.11 ], [ -63.27, 43.56 ], [ -62.9, 42.7 ], [ -61.78, 42.39 ], [ -61.01, 42.93 ], [ -61.34, 43.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.76, 43.17 ], [ 8.11, 43.93 ], [ 7.24, 43.7 ], [ 6.5, 43.16 ], [ 6.94, 42.66 ], [ 8.17, 42.54 ], [ 8.76, 43.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.17, 43.49 ], [ 15.35, 44.03 ], [ 15.27, 44.02 ], [ 15.26, 44.02 ], [ 15.25, 44.02 ], [ 15.23, 44.02 ], [ 15.16, 44.01 ], [ 15.15, 44.01 ], [ 15.07, 44.0 ], [ 15.04, 44.0 ], [ 14.39, 43.93 ], [ 13.78, 43.22 ], [ 14.33, 42.54 ], [ 15.56, 42.66 ], [ 16.21, 43.38 ], [ 16.23, 43.42 ], [ 16.17, 43.49 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.04, 43.86 ], [ -130.1, 44.03 ], [ -130.91, 43.31 ], [ -130.67, 42.43 ], [ -129.66, 42.29 ], [ -128.85, 43.0 ], [ -129.04, 43.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.7, 43.34 ], [ -10.55, 44.0 ], [ -11.76, 43.91 ], [ -12.1, 43.16 ], [ -11.25, 42.51 ], [ -10.07, 42.6 ], [ -9.7, 43.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.27, 43.56 ], [ -64.42, 43.85 ], [ -65.18, 43.29 ], [ -64.79, 42.44 ], [ -63.66, 42.15 ], [ -62.9, 42.7 ], [ -63.27, 43.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.21, 43.64 ], [ -124.98, 43.84 ], [ -125.89, 43.23 ], [ -125.74, 42.37 ], [ -124.71, 42.12 ], [ -124.41, 42.31 ], [ -124.55, 42.84 ], [ -124.21, 43.64 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.39, 43.23 ], [ 147.48, 43.84 ], [ 146.42, 43.57 ], [ 146.3, 42.71 ], [ 147.21, 42.12 ], [ 148.24, 42.37 ], [ 148.39, 43.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.87, 43.55 ], [ 36.67, 43.68 ], [ 35.79, 43.05 ], [ 36.1, 42.29 ], [ 37.26, 42.16 ], [ 38.15, 42.79 ], [ 37.87, 43.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.58, 43.39 ], [ -2.17, 43.29 ], [ -1.67, 43.39 ], [ -1.46, 43.63 ], [ -2.43, 43.61 ], [ -2.58, 43.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.23, 42.88 ], [ 3.07, 43.05 ], [ 3.03, 42.63 ], [ 3.23, 42.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.25, 43.14 ], [ -52.06, 42.26 ], [ -51.03, 41.84 ], [ -50.16, 42.31 ], [ -50.32, 43.2 ], [ -51.37, 43.62 ], [ -52.25, 43.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.72, 42.19 ], [ 11.2, 42.5 ], [ 10.53, 43.06 ], [ 10.42, 43.4 ], [ 10.01, 43.0 ], [ 10.16, 42.82 ], [ 10.22, 42.74 ], [ 10.64, 42.21 ], [ 11.25, 42.1 ], [ 11.72, 42.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.87, 43.57 ], [ -5.41, 43.56 ], [ -4.69, 43.41 ], [ -4.87, 43.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 42.8 ], [ 28.6, 43.51 ], [ 28.1, 43.38 ], [ 27.9, 42.71 ], [ 27.64, 42.58 ], [ 27.92, 42.13 ], [ 28.22, 42.12 ], [ 29.0, 42.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.18, 43.29 ], [ -66.34, 43.57 ], [ -67.08, 43.0 ], [ -66.66, 42.16 ], [ -65.53, 41.88 ], [ -64.79, 42.44 ], [ -65.18, 43.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.42, 43.01 ], [ 138.44, 43.51 ], [ 137.46, 43.12 ], [ 137.48, 42.24 ], [ 138.44, 41.75 ], [ 139.4, 42.13 ], [ 139.42, 43.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 43.16 ], [ 5.91, 43.09 ], [ 5.35, 43.21 ], [ 4.96, 43.43 ], [ 4.46, 42.83 ], [ 5.14, 42.1 ], [ 6.37, 42.02 ], [ 6.94, 42.66 ], [ 6.5, 43.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.92, 42.71 ], [ 17.92, 42.71 ], [ 17.92, 42.71 ], [ 17.92, 42.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.94, 42.73 ], [ 16.87, 43.4 ], [ 16.64, 43.44 ], [ 16.27, 43.41 ], [ 16.21, 43.38 ], [ 15.56, 42.66 ], [ 16.13, 42.02 ], [ 17.36, 42.1 ], [ 17.91, 42.7 ], [ 17.93, 42.72 ], [ 17.94, 42.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -125.89, 43.23 ], [ -126.94, 43.46 ], [ -127.81, 42.81 ], [ -127.63, 41.95 ], [ -126.61, 41.74 ], [ -125.74, 42.37 ], [ -125.89, 43.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.45, 43.37 ], [ -8.5, 43.42 ], [ -9.7, 43.34 ], [ -10.07, 42.6 ], [ -9.25, 41.93 ], [ -8.88, 41.96 ], [ -8.85, 42.61 ], [ -9.29, 42.93 ], [ -8.84, 43.34 ], [ -8.45, 43.37 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.7, 41.76 ], [ 140.6, 41.74 ], [ 140.44, 41.66 ], [ 140.7, 41.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.35, 42.54 ], [ 141.0, 42.3 ], [ 140.48, 42.58 ], [ 140.28, 42.26 ], [ 141.05, 41.89 ], [ 141.32, 41.99 ], [ 141.35, 42.54 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.08, 41.77 ], [ 140.05, 42.08 ], [ 139.78, 42.26 ], [ 139.82, 42.6 ], [ 140.53, 43.01 ], [ 140.46, 43.35 ], [ 140.41, 43.38 ], [ 139.42, 43.01 ], [ 139.4, 42.13 ], [ 139.42, 42.12 ], [ 139.5, 42.08 ], [ 140.08, 41.77 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.27, 43.25 ], [ 40.25, 43.25 ], [ 39.32, 42.64 ], [ 39.58, 41.88 ], [ 40.73, 41.72 ], [ 41.62, 42.3 ], [ 41.47, 42.68 ], [ 41.06, 42.97 ], [ 40.27, 43.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.26, 41.99 ], [ 142.48, 42.27 ], [ 141.9, 42.58 ], [ 141.35, 42.54 ], [ 141.32, 41.99 ], [ 142.25, 41.46 ], [ 143.24, 41.8 ], [ 143.26, 41.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.77, 41.83 ], [ 8.78, 41.84 ], [ 8.75, 41.85 ], [ 8.77, 41.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.75, 41.85 ], [ 8.8, 41.9 ], [ 8.7, 41.92 ], [ 8.75, 41.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.82, 43.03 ], [ 9.79, 43.03 ], [ 8.76, 43.17 ], [ 8.17, 42.54 ], [ 8.65, 41.97 ], [ 8.71, 42.58 ], [ 9.49, 42.8 ], [ 9.53, 42.09 ], [ 9.4, 41.7 ], [ 10.03, 41.61 ], [ 10.64, 42.21 ], [ 10.22, 42.74 ], [ 10.16, 42.82 ], [ 10.01, 43.0 ], [ 9.82, 43.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.47, 41.61 ], [ 12.45, 41.63 ], [ 12.47, 41.61 ], [ 12.47, 41.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 42.51 ], [ -12.1, 43.16 ], [ -13.29, 43.05 ], [ -13.6, 42.29 ], [ -12.75, 41.65 ], [ -11.59, 41.75 ], [ -11.25, 42.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.79, 43.05 ], [ 34.6, 43.16 ], [ 33.75, 42.51 ], [ 33.99, 41.98 ], [ 35.09, 41.92 ], [ 35.32, 41.7 ], [ 36.1, 42.29 ], [ 35.79, 43.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.81, 42.81 ], [ -128.85, 43.0 ], [ -129.66, 42.29 ], [ -129.45, 41.41 ], [ -128.46, 41.26 ], [ -127.63, 41.95 ], [ -127.81, 42.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.36, 42.97 ], [ 144.34, 42.99 ], [ 143.88, 42.84 ], [ 143.32, 42.29 ], [ 143.26, 41.99 ], [ 143.24, 41.8 ], [ 144.16, 41.26 ], [ 145.16, 41.56 ], [ 145.27, 42.42 ], [ 144.38, 42.96 ], [ 144.36, 42.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.46, 42.83 ], [ 3.23, 42.88 ], [ 3.03, 42.63 ], [ 3.23, 41.96 ], [ 3.07, 41.83 ], [ 3.39, 41.49 ], [ 4.6, 41.44 ], [ 5.14, 42.1 ], [ 4.46, 42.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.46, 41.86 ], [ 17.94, 42.73 ], [ 17.93, 42.72 ], [ 17.92, 42.71 ], [ 17.92, 42.71 ], [ 17.91, 42.7 ], [ 17.36, 42.1 ], [ 17.9, 41.44 ], [ 19.11, 41.49 ], [ 19.46, 41.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.19, 42.75 ], [ 29.0, 42.8 ], [ 28.22, 42.12 ], [ 28.63, 41.38 ], [ 29.8, 41.33 ], [ 30.58, 42.01 ], [ 30.19, 42.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.32, 42.64 ], [ 38.15, 42.79 ], [ 37.26, 42.16 ], [ 37.56, 41.4 ], [ 38.7, 41.26 ], [ 39.58, 41.88 ], [ 39.32, 42.64 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.14, 41.15 ], [ -124.06, 41.44 ], [ -124.41, 42.31 ], [ -124.71, 42.12 ], [ -124.58, 41.26 ], [ -124.14, 41.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.21, 42.12 ], [ 146.3, 42.71 ], [ 145.27, 42.42 ], [ 145.16, 41.56 ], [ 146.06, 40.99 ], [ 147.08, 41.26 ], [ 147.21, 42.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.78, 42.39 ], [ -62.9, 42.7 ], [ -63.66, 42.15 ], [ -63.29, 41.29 ], [ -62.19, 40.98 ], [ -61.44, 41.52 ], [ -61.78, 42.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17, 42.54 ], [ 6.94, 42.66 ], [ 6.37, 42.02 ], [ 7.02, 41.27 ], [ 8.23, 41.16 ], [ 8.78, 41.75 ], [ 8.77, 41.83 ], [ 8.75, 41.85 ], [ 8.75, 41.85 ], [ 8.7, 41.92 ], [ 8.65, 41.97 ], [ 8.17, 42.54 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.13, 42.02 ], [ 15.56, 42.66 ], [ 14.33, 42.54 ], [ 14.73, 42.09 ], [ 15.34, 41.87 ], [ 16.07, 41.94 ], [ 16.13, 42.02 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.25, 41.93 ], [ -10.07, 42.6 ], [ -11.25, 42.51 ], [ -11.59, 41.75 ], [ -10.78, 41.1 ], [ -9.62, 41.19 ], [ -9.25, 41.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 42.51 ], [ 32.57, 42.6 ], [ 31.75, 41.93 ], [ 31.95, 41.54 ], [ 32.52, 41.82 ], [ 33.34, 42.03 ], [ 33.99, 41.98 ], [ 33.75, 42.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.66, 42.15 ], [ -64.79, 42.44 ], [ -65.53, 41.88 ], [ -65.13, 41.03 ], [ -64.02, 40.74 ], [ -63.29, 41.29 ], [ -63.66, 42.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.71, 42.12 ], [ -125.74, 42.37 ], [ -126.61, 41.74 ], [ -126.46, 40.88 ], [ -125.45, 40.66 ], [ -124.58, 41.26 ], [ -124.71, 42.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.9, 41.18 ], [ 41.52, 41.48 ], [ 41.77, 41.81 ], [ 41.62, 42.3 ], [ 40.73, 41.72 ], [ 40.9, 41.18 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.26, 42.16 ], [ 36.1, 42.29 ], [ 35.32, 41.7 ], [ 35.98, 41.74 ], [ 36.4, 41.25 ], [ 36.87, 41.34 ], [ 37.21, 41.14 ], [ 37.56, 41.4 ], [ 37.26, 42.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.44, 41.75 ], [ 137.48, 42.24 ], [ 136.54, 41.83 ], [ 136.57, 40.94 ], [ 137.52, 40.46 ], [ 138.44, 40.86 ], [ 138.44, 41.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.37, 40.81 ], [ 24.53, 40.96 ], [ 24.28, 40.81 ], [ 24.37, 40.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.39, 41.49 ], [ 3.07, 41.83 ], [ 2.26, 41.45 ], [ 2.12, 41.3 ], [ 1.39, 41.13 ], [ 1.69, 40.83 ], [ 2.88, 40.81 ], [ 3.39, 41.49 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.46, 41.03 ], [ 19.46, 41.86 ], [ 19.11, 41.49 ], [ 19.46, 41.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.72, 42.19 ], [ 11.25, 42.1 ], [ 10.64, 42.21 ], [ 10.03, 41.61 ], [ 10.65, 40.83 ], [ 11.25, 40.72 ], [ 11.85, 40.83 ], [ 12.47, 41.61 ], [ 12.45, 41.63 ], [ 11.72, 42.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.53, 41.88 ], [ -66.66, 42.16 ], [ -67.38, 41.59 ], [ -66.96, 40.75 ], [ -65.84, 40.47 ], [ -65.13, 41.03 ], [ -65.53, 41.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.29, 41.07 ], [ 27.53, 40.98 ], [ 27.32, 40.72 ], [ 27.88, 40.7 ], [ 28.29, 41.07 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.22, 42.12 ], [ 27.92, 42.13 ], [ 28.22, 41.53 ], [ 28.62, 41.37 ], [ 28.63, 41.38 ], [ 28.22, 42.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.42, 42.12 ], [ 139.4, 42.13 ], [ 138.44, 41.75 ], [ 138.44, 40.86 ], [ 139.37, 40.36 ], [ 139.9, 40.58 ], [ 140.32, 40.98 ], [ 140.32, 41.09 ], [ 140.33, 41.15 ], [ 140.34, 41.5 ], [ 140.08, 41.77 ], [ 139.5, 42.08 ], [ 139.42, 42.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9, 41.44 ], [ 17.36, 42.1 ], [ 16.13, 42.02 ], [ 16.07, 41.94 ], [ 15.96, 41.46 ], [ 17.05, 41.08 ], [ 17.39, 40.88 ], [ 17.9, 41.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.71, 40.66 ], [ -8.65, 41.01 ], [ -8.88, 41.96 ], [ -9.25, 41.93 ], [ -9.62, 41.19 ], [ -8.84, 40.52 ], [ -8.78, 40.52 ], [ -8.71, 40.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.75, 41.93 ], [ 30.58, 42.01 ], [ 29.8, 41.33 ], [ 29.89, 41.15 ], [ 30.27, 41.22 ], [ 30.75, 41.09 ], [ 31.23, 41.1 ], [ 31.4, 41.32 ], [ 31.95, 41.54 ], [ 31.75, 41.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.32, 40.98 ], [ 140.33, 41.03 ], [ 140.32, 41.09 ], [ 140.32, 40.98 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.32, 41.99 ], [ 141.05, 41.89 ], [ 140.7, 41.76 ], [ 140.44, 41.66 ], [ 140.34, 41.5 ], [ 140.33, 41.15 ], [ 140.7, 40.85 ], [ 141.13, 40.87 ], [ 141.72, 40.42 ], [ 142.19, 40.59 ], [ 142.25, 41.46 ], [ 141.32, 41.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.61, 41.74 ], [ -127.63, 41.95 ], [ -128.46, 41.26 ], [ -128.27, 40.38 ], [ -127.29, 40.21 ], [ -126.46, 40.88 ], [ -126.61, 41.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.73, 41.72 ], [ 39.58, 41.88 ], [ 38.7, 41.26 ], [ 38.79, 41.0 ], [ 39.43, 41.11 ], [ 40.14, 40.91 ], [ 40.9, 41.18 ], [ 40.73, 41.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.38, 41.59 ], [ -68.52, 41.85 ], [ -69.22, 41.27 ], [ -68.77, 40.43 ], [ -67.65, 40.17 ], [ -66.96, 40.75 ], [ -67.38, 41.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.16, 41.26 ], [ 143.24, 41.8 ], [ 142.25, 41.46 ], [ 142.19, 40.59 ], [ 143.09, 40.06 ], [ 144.07, 40.39 ], [ 144.16, 41.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4, 41.7 ], [ 9.18, 41.37 ], [ 8.78, 41.75 ], [ 8.23, 41.16 ], [ 8.28, 41.1 ], [ 8.31, 41.06 ], [ 8.5, 40.83 ], [ 9.01, 41.13 ], [ 9.52, 41.16 ], [ 9.72, 40.85 ], [ 9.83, 40.52 ], [ 9.64, 40.29 ], [ 10.06, 40.23 ], [ 10.65, 40.83 ], [ 10.03, 41.61 ], [ 9.4, 41.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.03, 40.87 ], [ 13.8, 41.19 ], [ 12.63, 41.44 ], [ 12.47, 41.61 ], [ 12.47, 41.61 ], [ 11.85, 40.83 ], [ 12.44, 40.23 ], [ 13.64, 40.39 ], [ 13.89, 40.7 ], [ 13.93, 40.75 ], [ 14.03, 40.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.06, 40.99 ], [ 145.16, 41.56 ], [ 144.16, 41.26 ], [ 144.07, 40.39 ], [ 144.96, 39.84 ], [ 145.95, 40.13 ], [ 146.06, 40.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.39, 41.13 ], [ 0.98, 41.04 ], [ 0.17, 40.13 ], [ 1.19, 40.13 ], [ 1.69, 40.83 ], [ 1.39, 41.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.96, 40.61 ], [ 22.74, 40.56 ], [ 22.59, 40.25 ], [ 22.83, 40.48 ], [ 22.86, 40.51 ], [ 22.95, 40.59 ], [ 22.96, 40.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.22, 41.27 ], [ -70.37, 41.5 ], [ -71.05, 40.91 ], [ -70.57, 40.09 ], [ -69.45, 39.85 ], [ -68.77, 40.43 ], [ -69.22, 41.27 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.62, 40.64 ], [ 26.08, 40.63 ], [ 25.92, 40.86 ], [ 25.05, 40.99 ], [ 24.53, 40.96 ], [ 24.37, 40.81 ], [ 24.82, 40.09 ], [ 25.98, 40.06 ], [ 26.24, 40.29 ], [ 26.33, 40.37 ], [ 26.62, 40.64 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.6, 41.44 ], [ 3.39, 41.49 ], [ 2.88, 40.81 ], [ 3.55, 40.09 ], [ 4.02, 40.07 ], [ 4.17, 40.07 ], [ 4.73, 40.04 ], [ 5.26, 40.71 ], [ 4.6, 41.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.98, 40.05 ], [ 17.57, 40.3 ], [ 17.77, 40.04 ], [ 17.94, 40.05 ], [ 17.95, 40.05 ], [ 17.98, 40.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.39, 40.56 ], [ 19.46, 41.03 ], [ 19.11, 41.49 ], [ 17.9, 41.44 ], [ 17.39, 40.88 ], [ 18.02, 40.64 ], [ 18.42, 40.29 ], [ 18.48, 40.07 ], [ 18.95, 40.09 ], [ 19.39, 40.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.7, 41.26 ], [ 37.56, 41.4 ], [ 37.21, 41.14 ], [ 38.35, 40.91 ], [ 38.79, 41.0 ], [ 38.7, 41.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.8, 41.33 ], [ 28.63, 41.38 ], [ 28.62, 41.37 ], [ 29.08, 41.26 ], [ 28.82, 40.96 ], [ 28.29, 41.07 ], [ 27.88, 40.7 ], [ 27.99, 40.5 ], [ 28.81, 40.4 ], [ 28.8, 40.56 ], [ 29.36, 40.77 ], [ 29.02, 41.03 ], [ 29.27, 41.24 ], [ 29.89, 41.15 ], [ 29.8, 41.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.23, 41.16 ], [ 7.02, 41.27 ], [ 6.46, 40.63 ], [ 7.1, 39.89 ], [ 8.29, 39.77 ], [ 8.41, 39.9 ], [ 8.48, 40.28 ], [ 8.14, 40.74 ], [ 8.5, 40.83 ], [ 8.31, 41.06 ], [ 8.28, 41.1 ], [ 8.23, 41.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.56, 40.08 ], [ 15.33, 40.0 ], [ 14.93, 40.23 ], [ 14.99, 40.41 ], [ 14.03, 40.87 ], [ 13.93, 40.75 ], [ 13.89, 40.7 ], [ 13.64, 40.39 ], [ 14.21, 39.77 ], [ 15.4, 39.89 ], [ 15.56, 40.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.14, 41.15 ], [ -124.58, 41.26 ], [ -125.45, 40.66 ], [ -125.32, 39.8 ], [ -124.33, 39.55 ], [ -123.88, 39.85 ], [ -124.36, 40.26 ], [ -124.41, 40.44 ], [ -124.14, 41.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.84, 40.52 ], [ -9.62, 41.19 ], [ -10.78, 41.1 ], [ -11.12, 40.34 ], [ -10.34, 39.69 ], [ -9.21, 39.77 ], [ -8.84, 40.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.05, 40.91 ], [ -71.86, 41.07 ], [ -72.44, 40.85 ], [ -72.86, 40.55 ], [ -72.36, 39.73 ], [ -71.23, 39.5 ], [ -70.57, 40.09 ], [ -71.05, 40.91 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -125.45, 40.66 ], [ -126.46, 40.88 ], [ -127.29, 40.21 ], [ -127.12, 39.34 ], [ -126.16, 39.16 ], [ -125.32, 39.8 ], [ -125.45, 40.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.21, 40.21 ], [ -31.04, 40.88 ], [ -32.05, 40.66 ], [ -32.18, 39.8 ], [ -31.34, 39.16 ], [ -30.38, 39.34 ], [ -30.21, 40.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.37, 40.36 ], [ 138.44, 40.86 ], [ 137.52, 40.46 ], [ 137.55, 39.56 ], [ 138.47, 39.07 ], [ 139.37, 39.47 ], [ 139.37, 40.36 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.95, 40.59 ], [ 22.86, 40.51 ], [ 22.97, 40.53 ], [ 22.95, 40.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.95, 40.59 ], [ 22.96, 40.6 ], [ 22.96, 40.61 ], [ 22.95, 40.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.37, 40.81 ], [ 24.28, 40.81 ], [ 23.7, 40.7 ], [ 23.79, 40.2 ], [ 23.34, 40.22 ], [ 22.83, 40.48 ], [ 22.59, 40.25 ], [ 22.6, 40.02 ], [ 23.16, 39.42 ], [ 24.11, 39.41 ], [ 24.82, 40.09 ], [ 24.37, 40.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.88, 40.81 ], [ 1.69, 40.83 ], [ 1.19, 40.13 ], [ 1.87, 39.43 ], [ 2.74, 39.41 ], [ 2.35, 39.59 ], [ 3.04, 39.94 ], [ 3.28, 39.74 ], [ 3.55, 40.09 ], [ 2.88, 40.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.19, 39.52 ], [ 19.87, 40.04 ], [ 19.45, 40.24 ], [ 19.39, 40.56 ], [ 18.95, 40.09 ], [ 19.46, 39.41 ], [ 19.98, 39.42 ], [ 20.09, 39.42 ], [ 20.23, 39.42 ], [ 20.19, 39.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44, 40.23 ], [ 11.85, 40.83 ], [ 11.25, 40.72 ], [ 10.65, 40.83 ], [ 10.06, 40.23 ], [ 10.66, 39.45 ], [ 11.25, 39.34 ], [ 11.84, 39.45 ], [ 12.44, 40.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.84, 40.47 ], [ -66.96, 40.75 ], [ -67.65, 40.17 ], [ -67.22, 39.33 ], [ -66.12, 39.05 ], [ -65.44, 39.62 ], [ -65.84, 40.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.91, 39.17 ], [ 140.06, 39.74 ], [ 139.9, 40.0 ], [ 140.03, 40.35 ], [ 139.9, 40.58 ], [ 139.37, 40.36 ], [ 139.37, 39.47 ], [ 139.91, 39.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.69, 39.32 ], [ 26.32, 39.48 ], [ 26.4, 39.34 ], [ 26.42, 39.33 ], [ 26.64, 39.32 ], [ 26.66, 39.32 ], [ 26.69, 39.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.33, 40.37 ], [ 26.84, 40.59 ], [ 26.62, 40.64 ], [ 26.33, 40.37 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.73, 40.4 ], [ 27.78, 40.32 ], [ 27.99, 40.5 ], [ 27.88, 40.7 ], [ 27.32, 40.72 ], [ 26.24, 40.29 ], [ 25.98, 40.06 ], [ 26.05, 39.94 ], [ 26.15, 39.77 ], [ 26.73, 40.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.06, 39.25 ], [ 15.78, 39.89 ], [ 15.56, 40.08 ], [ 15.4, 39.89 ], [ 15.95, 39.24 ], [ 16.06, 39.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.57, 40.3 ], [ 16.9, 40.43 ], [ 16.49, 39.8 ], [ 17.12, 39.31 ], [ 17.12, 39.31 ], [ 17.77, 40.04 ], [ 17.57, 40.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.73, 39.03 ], [ 141.74, 39.04 ], [ 141.73, 39.07 ], [ 141.72, 39.06 ], [ 141.73, 39.04 ], [ 141.73, 39.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.09, 40.06 ], [ 142.19, 40.59 ], [ 141.72, 40.42 ], [ 142.07, 39.53 ], [ 141.76, 39.02 ], [ 142.08, 38.83 ], [ 143.02, 39.18 ], [ 143.09, 40.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.06, 39.65 ], [ -8.78, 40.52 ], [ -8.84, 40.52 ], [ -9.21, 39.77 ], [ -9.06, 39.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.65, 40.17 ], [ -68.77, 40.43 ], [ -69.45, 39.85 ], [ -69.0, 39.02 ], [ -67.89, 38.76 ], [ -67.22, 39.33 ], [ -67.65, 40.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.46, 39.56 ], [ 8.41, 39.9 ], [ 8.29, 39.77 ], [ 8.46, 39.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.66, 39.45 ], [ 10.06, 40.23 ], [ 9.64, 40.29 ], [ 9.68, 39.98 ], [ 9.57, 39.15 ], [ 9.09, 39.22 ], [ 9.02, 39.0 ], [ 10.08, 38.85 ], [ 10.66, 39.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.21, 39.77 ], [ 13.64, 40.39 ], [ 12.44, 40.23 ], [ 11.84, 39.45 ], [ 12.42, 38.85 ], [ 13.6, 39.01 ], [ 14.21, 39.77 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.96, 39.84 ], [ 144.07, 40.39 ], [ 143.09, 40.06 ], [ 143.02, 39.18 ], [ 143.9, 38.65 ], [ 144.86, 38.97 ], [ 144.96, 39.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.19, 40.13 ], [ 0.17, 40.13 ], [ -0.32, 39.51 ], [ -0.23, 39.2 ], [ 0.23, 38.73 ], [ 0.23, 38.73 ], [ 1.38, 38.73 ], [ 1.42, 38.78 ], [ 1.42, 38.79 ], [ 1.56, 38.99 ], [ 1.6, 39.05 ], [ 1.87, 39.43 ], [ 1.19, 40.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.97, 38.94 ], [ 21.07, 38.88 ], [ 21.16, 38.99 ], [ 20.93, 39.01 ], [ 20.97, 38.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.15, 38.46 ], [ -123.72, 38.92 ], [ -123.88, 39.85 ], [ -124.33, 39.55 ], [ -124.2, 38.69 ], [ -123.23, 38.41 ], [ -123.15, 38.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.45, 39.85 ], [ -70.57, 40.09 ], [ -71.23, 39.5 ], [ -70.76, 38.68 ], [ -69.65, 38.44 ], [ -69.0, 39.02 ], [ -69.45, 39.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.98, 40.06 ], [ 24.82, 40.09 ], [ 24.11, 39.41 ], [ 24.15, 39.35 ], [ 24.15, 39.35 ], [ 24.44, 38.88 ], [ 24.44, 38.88 ], [ 24.56, 38.69 ], [ 25.7, 38.65 ], [ 26.12, 39.06 ], [ 26.4, 39.34 ], [ 26.32, 39.48 ], [ 26.15, 39.77 ], [ 26.05, 39.94 ], [ 25.98, 40.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.26, 39.9 ], [ 4.26, 39.9 ], [ 4.25, 39.9 ], [ 4.26, 39.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.26, 39.9 ], [ 4.02, 40.07 ], [ 3.55, 40.09 ], [ 3.28, 39.74 ], [ 3.12, 39.31 ], [ 3.69, 38.69 ], [ 4.85, 38.65 ], [ 5.38, 39.31 ], [ 4.73, 40.04 ], [ 4.17, 40.07 ], [ 4.26, 39.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.46, 39.41 ], [ 18.95, 40.09 ], [ 18.48, 40.07 ], [ 17.98, 40.05 ], [ 17.95, 40.05 ], [ 17.94, 40.05 ], [ 17.77, 40.04 ], [ 17.12, 39.31 ], [ 17.65, 38.65 ], [ 18.81, 38.69 ], [ 19.46, 39.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.8, 38.9 ], [ 8.8, 38.9 ], [ 8.8, 38.9 ], [ 8.8, 38.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.79, 38.89 ], [ 8.43, 39.17 ], [ 8.46, 39.56 ], [ 8.29, 39.77 ], [ 7.1, 39.89 ], [ 6.55, 39.24 ], [ 7.17, 38.5 ], [ 8.34, 38.39 ], [ 8.79, 38.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95, 39.24 ], [ 15.4, 39.89 ], [ 14.21, 39.77 ], [ 13.6, 39.01 ], [ 14.16, 38.39 ], [ 14.92, 38.46 ], [ 14.96, 38.47 ], [ 15.33, 38.5 ], [ 15.95, 39.24 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.33, 39.55 ], [ -125.32, 39.8 ], [ -126.16, 39.16 ], [ -126.01, 38.28 ], [ -125.05, 38.08 ], [ -124.2, 38.69 ], [ -124.33, 39.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.8, 38.38 ], [ -9.48, 38.71 ], [ -9.42, 39.07 ], [ -9.06, 39.65 ], [ -9.21, 39.77 ], [ -10.34, 39.69 ], [ -10.69, 38.93 ], [ -9.93, 38.27 ], [ -8.82, 38.36 ], [ -8.8, 38.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.23, 39.5 ], [ -72.36, 39.73 ], [ -73.0, 39.14 ], [ -72.51, 38.32 ], [ -71.39, 38.09 ], [ -70.76, 38.68 ], [ -71.23, 39.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.98, 38.28 ], [ 134.87, 39.19 ], [ 133.92, 39.65 ], [ 133.08, 39.2 ], [ 133.22, 38.29 ], [ 134.17, 37.83 ], [ 134.98, 38.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.5, 38.17 ], [ 138.5, 38.22 ], [ 138.45, 38.14 ], [ 138.5, 38.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.24, 38.04 ], [ 138.49, 38.33 ], [ 138.47, 39.07 ], [ 137.55, 39.56 ], [ 136.67, 39.14 ], [ 136.74, 38.23 ], [ 137.66, 37.75 ], [ 138.24, 38.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.91, 39.17 ], [ 139.37, 39.47 ], [ 138.47, 39.07 ], [ 138.49, 38.33 ], [ 138.5, 38.22 ], [ 138.5, 38.17 ], [ 138.99, 37.9 ], [ 139.41, 38.15 ], [ 139.91, 39.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.42, 38.85 ], [ 11.84, 39.45 ], [ 11.25, 39.34 ], [ 10.66, 39.45 ], [ 10.08, 38.85 ], [ 10.67, 38.07 ], [ 11.25, 37.97 ], [ 11.83, 38.07 ], [ 12.42, 38.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.74, 39.41 ], [ 1.87, 39.43 ], [ 1.6, 39.05 ], [ 1.56, 38.99 ], [ 1.42, 38.79 ], [ 1.42, 38.78 ], [ 1.38, 38.73 ], [ 1.39, 38.73 ], [ 1.43, 38.68 ], [ 2.04, 38.03 ], [ 3.19, 38.01 ], [ 3.69, 38.69 ], [ 3.12, 39.31 ], [ 2.74, 39.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.23, 39.41 ], [ 20.23, 39.42 ], [ 20.09, 39.42 ], [ 19.98, 39.42 ], [ 19.46, 39.41 ], [ 18.81, 38.69 ], [ 19.31, 38.01 ], [ 20.46, 38.03 ], [ 20.53, 38.11 ], [ 20.68, 38.27 ], [ 20.72, 38.31 ], [ 20.75, 38.34 ], [ 21.01, 38.62 ], [ 20.97, 38.94 ], [ 20.93, 39.01 ], [ 20.23, 39.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.23, 38.73 ], [ 0.23, 38.73 ], [ -0.5, 38.33 ], [ -0.65, 38.02 ], [ -0.23, 38.02 ], [ 0.23, 38.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.72, 38.04 ], [ 23.06, 38.06 ], [ 23.12, 38.21 ], [ 22.56, 38.29 ], [ 22.72, 38.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.53, 38.34 ], [ 22.54, 38.35 ], [ 22.49, 38.39 ], [ 22.53, 38.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.11, 39.41 ], [ 23.16, 39.42 ], [ 22.83, 39.28 ], [ 23.02, 38.99 ], [ 22.71, 38.84 ], [ 24.07, 38.21 ], [ 24.12, 38.25 ], [ 23.63, 38.43 ], [ 23.59, 38.77 ], [ 24.23, 38.52 ], [ 24.22, 38.36 ], [ 24.56, 38.69 ], [ 24.44, 38.88 ], [ 24.44, 38.88 ], [ 24.15, 39.35 ], [ 24.15, 39.35 ], [ 24.11, 39.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.0, 39.14 ], [ -74.13, 39.36 ], [ -74.75, 38.76 ], [ -74.24, 37.95 ], [ -73.13, 37.72 ], [ -72.51, 38.32 ], [ -73.0, 39.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.73, 39.03 ], [ 141.73, 39.04 ], [ 141.37, 38.41 ], [ 140.96, 38.18 ], [ 141.03, 37.63 ], [ 141.15, 37.56 ], [ 142.04, 37.94 ], [ 142.08, 38.83 ], [ 141.76, 39.02 ], [ 141.73, 39.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.66, 39.32 ], [ 26.66, 39.31 ], [ 26.69, 39.32 ], [ 26.66, 39.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.26, 37.89 ], [ 26.48, 38.38 ], [ 27.02, 38.87 ], [ 26.64, 39.32 ], [ 26.42, 39.33 ], [ 26.12, 39.06 ], [ 25.7, 38.65 ], [ 25.91, 38.29 ], [ 25.98, 38.17 ], [ 26.12, 37.93 ], [ 27.24, 37.87 ], [ 27.26, 37.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.65, 38.12 ], [ 16.22, 38.81 ], [ 16.06, 39.25 ], [ 15.95, 39.24 ], [ 15.33, 38.5 ], [ 15.5, 38.29 ], [ 15.57, 38.21 ], [ 15.58, 38.2 ], [ 15.58, 38.2 ], [ 15.65, 38.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.65, 38.65 ], [ 17.12, 39.31 ], [ 17.12, 39.31 ], [ 17.18, 39.01 ], [ 16.63, 38.82 ], [ 16.59, 38.45 ], [ 15.81, 37.92 ], [ 15.87, 37.85 ], [ 17.02, 37.92 ], [ 17.65, 38.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.9, 38.65 ], [ 143.02, 39.18 ], [ 142.08, 38.83 ], [ 142.04, 37.94 ], [ 142.91, 37.42 ], [ 143.83, 37.77 ], [ 143.9, 38.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.78, 38.32 ], [ -8.8, 38.38 ], [ -8.82, 38.36 ], [ -8.78, 38.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.08, 38.85 ], [ 9.02, 39.0 ], [ 8.8, 38.9 ], [ 8.8, 38.9 ], [ 8.79, 38.89 ], [ 8.34, 38.39 ], [ 8.94, 37.63 ], [ 10.1, 37.48 ], [ 10.67, 38.07 ], [ 10.08, 38.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.16, 38.39 ], [ 13.6, 39.01 ], [ 12.42, 38.85 ], [ 11.83, 38.07 ], [ 12.4, 37.48 ], [ 12.97, 37.56 ], [ 12.47, 37.7 ], [ 12.51, 38.01 ], [ 13.38, 38.12 ], [ 13.84, 37.99 ], [ 14.16, 38.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.06, 38.31 ], [ -123.06, 38.31 ], [ -123.06, 38.31 ], [ -123.06, 38.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.06, 38.31 ], [ -123.15, 38.46 ], [ -123.23, 38.41 ], [ -123.13, 37.55 ], [ -122.41, 37.31 ], [ -122.32, 37.91 ], [ -122.66, 37.91 ], [ -123.06, 38.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.38, 38.73 ], [ 0.23, 38.73 ], [ -0.23, 38.02 ], [ 0.44, 37.33 ], [ 1.56, 37.33 ], [ 2.04, 38.03 ], [ 1.43, 38.68 ], [ 1.39, 38.73 ], [ 1.38, 38.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.49, 38.39 ], [ 21.16, 38.3 ], [ 21.01, 38.62 ], [ 20.75, 38.34 ], [ 20.72, 38.31 ], [ 20.68, 38.27 ], [ 20.53, 38.11 ], [ 20.46, 38.03 ], [ 20.94, 37.33 ], [ 21.7, 37.33 ], [ 21.12, 37.84 ], [ 21.36, 38.17 ], [ 21.85, 38.34 ], [ 22.72, 38.04 ], [ 22.56, 38.29 ], [ 22.53, 38.34 ], [ 22.49, 38.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.31, 38.01 ], [ 18.81, 38.69 ], [ 17.65, 38.65 ], [ 17.02, 37.92 ], [ 17.54, 37.25 ], [ 18.67, 37.3 ], [ 19.31, 38.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.23, 38.41 ], [ -124.2, 38.69 ], [ -125.05, 38.08 ], [ -124.92, 37.22 ], [ -123.97, 36.98 ], [ -123.13, 37.55 ], [ -123.23, 38.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.7, 38.65 ], [ 24.56, 38.69 ], [ 24.22, 38.36 ], [ 24.12, 38.25 ], [ 24.07, 38.21 ], [ 24.06, 37.68 ], [ 24.31, 37.28 ], [ 25.42, 37.25 ], [ 26.12, 37.93 ], [ 25.98, 38.17 ], [ 25.91, 38.29 ], [ 25.7, 38.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.54, 37.19 ], [ -13.23, 37.96 ], [ -14.01, 38.6 ], [ -15.11, 38.47 ], [ -15.41, 37.69 ], [ -14.62, 37.06 ], [ -13.54, 37.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.25, 37.86 ], [ 27.26, 37.89 ], [ 27.24, 37.87 ], [ 27.25, 37.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.34, 38.39 ], [ 7.17, 38.5 ], [ 6.63, 37.85 ], [ 7.24, 37.11 ], [ 8.39, 37.01 ], [ 8.94, 37.63 ], [ 8.34, 38.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31, 37.03 ], [ 14.02, 37.11 ], [ 14.11, 37.01 ], [ 14.31, 37.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.81, 37.92 ], [ 15.65, 38.12 ], [ 15.58, 38.2 ], [ 15.09, 37.49 ], [ 15.26, 37.11 ], [ 15.87, 37.85 ], [ 15.81, 37.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.57, 38.21 ], [ 15.56, 38.19 ], [ 15.57, 38.19 ], [ 15.58, 38.2 ], [ 15.57, 38.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.33, 38.5 ], [ 14.96, 38.47 ], [ 14.92, 38.46 ], [ 14.16, 38.39 ], [ 13.84, 37.99 ], [ 15.1, 38.12 ], [ 15.5, 38.29 ], [ 15.33, 38.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.78, 38.32 ], [ -8.82, 38.36 ], [ -9.93, 38.27 ], [ -10.28, 37.52 ], [ -9.54, 36.86 ], [ -8.45, 36.94 ], [ -8.37, 37.1 ], [ -8.98, 37.02 ], [ -8.79, 37.53 ], [ -8.78, 38.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.17, 37.83 ], [ 133.22, 38.29 ], [ 132.43, 37.83 ], [ 132.62, 36.92 ], [ 133.59, 36.46 ], [ 134.33, 36.91 ], [ 134.17, 37.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.91, 37.8 ], [ 134.98, 38.28 ], [ 134.17, 37.83 ], [ 134.33, 36.91 ], [ 135.28, 36.44 ], [ 136.05, 36.88 ], [ 135.91, 37.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.66, 37.75 ], [ 136.74, 38.23 ], [ 135.91, 37.8 ], [ 136.05, 36.88 ], [ 136.59, 36.6 ], [ 136.76, 36.84 ], [ 136.73, 37.33 ], [ 137.12, 37.49 ], [ 136.99, 36.87 ], [ 137.33, 36.76 ], [ 137.73, 37.01 ], [ 137.66, 37.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.99, 37.9 ], [ 138.5, 38.17 ], [ 138.45, 38.14 ], [ 138.24, 38.04 ], [ 137.66, 37.75 ], [ 137.73, 37.01 ], [ 138.54, 37.36 ], [ 138.99, 37.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.31, 36.57 ], [ 34.84, 36.8 ], [ 34.38, 36.64 ], [ 35.28, 36.55 ], [ 35.31, 36.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.4, 37.48 ], [ 11.83, 38.07 ], [ 11.25, 37.97 ], [ 10.67, 38.07 ], [ 10.1, 37.48 ], [ 10.57, 36.84 ], [ 10.92, 36.65 ], [ 11.25, 36.59 ], [ 11.82, 36.7 ], [ 12.4, 37.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.15, 37.56 ], [ 141.03, 37.63 ], [ 140.97, 36.98 ], [ 140.81, 36.91 ], [ 140.63, 36.38 ], [ 141.17, 36.64 ], [ 141.15, 37.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.19, 38.01 ], [ 2.04, 38.03 ], [ 1.56, 37.33 ], [ 2.21, 36.63 ], [ 2.65, 36.62 ], [ 3.0, 36.82 ], [ 3.45, 36.77 ], [ 3.83, 37.3 ], [ 3.19, 38.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.94, 37.33 ], [ 20.46, 38.03 ], [ 19.31, 38.01 ], [ 18.67, 37.3 ], [ 19.17, 36.61 ], [ 20.29, 36.63 ], [ 20.94, 37.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.44, 37.33 ], [ -0.23, 38.02 ], [ -0.65, 38.02 ], [ -0.93, 37.55 ], [ -1.32, 37.56 ], [ -1.77, 37.25 ], [ -1.13, 36.6 ], [ -0.02, 36.62 ], [ 0.44, 37.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89, 36.61 ], [ 22.78, 36.8 ], [ 22.53, 36.62 ], [ 22.89, 36.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.06, 37.68 ], [ 23.59, 38.01 ], [ 23.14, 37.92 ], [ 22.98, 37.52 ], [ 23.06, 36.61 ], [ 23.63, 36.6 ], [ 24.31, 37.28 ], [ 24.06, 37.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.13, 37.72 ], [ -74.24, 37.95 ], [ -74.84, 37.35 ], [ -74.33, 36.53 ], [ -73.23, 36.32 ], [ -72.63, 36.91 ], [ -73.13, 37.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.91, 37.42 ], [ 142.04, 37.94 ], [ 141.15, 37.56 ], [ 141.17, 36.64 ], [ 142.05, 36.12 ], [ 142.88, 36.51 ], [ 142.91, 37.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.21, 36.75 ], [ -4.43, 36.71 ], [ -4.56, 36.58 ], [ -4.45, 36.47 ], [ -3.34, 36.52 ], [ -3.21, 36.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.24, 37.87 ], [ 26.12, 37.93 ], [ 25.42, 37.25 ], [ 25.47, 37.16 ], [ 25.57, 37.0 ], [ 25.6, 36.95 ], [ 25.61, 36.93 ], [ 25.63, 36.9 ], [ 25.63, 36.88 ], [ 25.84, 36.52 ], [ 26.95, 36.47 ], [ 26.97, 36.5 ], [ 26.98, 36.5 ], [ 27.35, 36.85 ], [ 27.35, 36.86 ], [ 27.47, 36.97 ], [ 27.48, 36.98 ], [ 27.49, 36.99 ], [ 27.5, 37.32 ], [ 27.2, 37.35 ], [ 27.25, 37.86 ], [ 27.24, 37.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.63, 37.85 ], [ 5.48, 37.92 ], [ 4.96, 37.25 ], [ 5.46, 36.67 ], [ 5.74, 36.83 ], [ 6.64, 36.96 ], [ 7.09, 36.93 ], [ 7.2, 37.06 ], [ 7.22, 37.09 ], [ 7.24, 37.11 ], [ 6.63, 37.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.54, 37.25 ], [ 17.02, 37.92 ], [ 15.87, 37.85 ], [ 15.26, 37.11 ], [ 15.3, 37.06 ], [ 15.32, 37.04 ], [ 15.32, 37.03 ], [ 15.79, 36.46 ], [ 16.92, 36.53 ], [ 17.54, 37.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.71, 36.19 ], [ -121.97, 36.57 ], [ -121.79, 36.82 ], [ -122.15, 36.98 ], [ -122.1, 36.35 ], [ -121.71, 36.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.73, 35.98 ], [ 144.6, 36.35 ], [ 144.68, 37.23 ], [ 143.83, 37.77 ], [ 142.91, 37.42 ], [ 142.88, 36.51 ], [ 143.73, 35.98 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.43, 36.74 ], [ -6.43, 36.91 ], [ -7.07, 37.22 ], [ -7.86, 37.0 ], [ -8.37, 37.1 ], [ -8.45, 36.94 ], [ -7.73, 36.27 ], [ -6.64, 36.34 ], [ -6.43, 36.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.27, 36.31 ], [ 30.15, 36.27 ], [ 30.23, 36.27 ], [ 30.27, 36.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.12, 36.38 ], [ 29.14, 36.34 ], [ 29.21, 36.33 ], [ 29.12, 36.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.12, 36.38 ], [ 29.13, 36.38 ], [ 29.11, 36.39 ], [ 29.12, 36.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.11, 36.4 ], [ 29.13, 36.55 ], [ 29.03, 36.54 ], [ 29.11, 36.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.03, 36.55 ], [ 29.1, 36.68 ], [ 28.93, 36.74 ], [ 28.94, 36.73 ], [ 28.94, 36.72 ], [ 29.03, 36.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.85, 36.85 ], [ 30.57, 36.78 ], [ 30.58, 36.6 ], [ 30.85, 36.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.62, 37.06 ], [ -15.41, 37.69 ], [ -16.49, 37.55 ], [ -16.77, 36.77 ], [ -15.99, 36.15 ], [ -14.92, 36.29 ], [ -14.62, 37.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.1, 37.48 ], [ 8.94, 37.63 ], [ 8.39, 37.01 ], [ 8.47, 36.9 ], [ 9.2, 37.23 ], [ 9.87, 37.34 ], [ 10.23, 37.19 ], [ 10.57, 36.84 ], [ 10.1, 37.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.02, 37.11 ], [ 13.88, 37.1 ], [ 12.97, 37.56 ], [ 12.4, 37.48 ], [ 11.82, 36.7 ], [ 12.38, 36.1 ], [ 13.52, 36.25 ], [ 14.11, 37.01 ], [ 14.02, 37.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.84, 37.35 ], [ -75.94, 37.57 ], [ -76.35, 37.16 ], [ -76.0, 36.92 ], [ -75.71, 36.09 ], [ -74.92, 35.93 ], [ -74.33, 36.53 ], [ -74.84, 37.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41, 37.31 ], [ -123.13, 37.55 ], [ -123.97, 36.98 ], [ -123.86, 36.12 ], [ -122.93, 35.81 ], [ -122.1, 36.35 ], [ -122.15, 36.98 ], [ -122.41, 37.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.54, 36.86 ], [ -10.28, 37.52 ], [ -11.37, 37.42 ], [ -11.7, 36.66 ], [ -10.96, 36.01 ], [ -9.89, 36.11 ], [ -9.54, 36.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.58, 36.09 ], [ 32.56, 36.1 ], [ 32.54, 36.09 ], [ 32.58, 36.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46, 36.01 ], [ 33.66, 36.18 ], [ 32.87, 36.06 ], [ 33.46, 36.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.53, 36.09 ], [ 32.33, 36.22 ], [ 32.39, 36.11 ], [ 32.53, 36.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.56, 37.33 ], [ 0.44, 37.33 ], [ -0.02, 36.62 ], [ 0.37, 36.21 ], [ 1.35, 36.56 ], [ 2.21, 36.63 ], [ 1.56, 37.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51, 36.61 ], [ 22.48, 36.61 ], [ 22.48, 36.58 ], [ 22.51, 36.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.38, 36.47 ], [ 22.16, 37.0 ], [ 21.71, 36.82 ], [ 21.7, 37.33 ], [ 20.94, 37.33 ], [ 20.29, 36.63 ], [ 20.76, 35.93 ], [ 21.87, 35.92 ], [ 22.38, 36.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96, 37.25 ], [ 3.83, 37.3 ], [ 3.45, 36.77 ], [ 3.88, 36.92 ], [ 4.92, 36.85 ], [ 5.46, 36.67 ], [ 4.96, 37.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.77, 37.25 ], [ -2.12, 36.74 ], [ -3.21, 36.75 ], [ -3.34, 36.52 ], [ -2.66, 35.84 ], [ -1.57, 35.88 ], [ -1.13, 36.6 ], [ -1.77, 37.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.42, 37.25 ], [ 24.31, 37.28 ], [ 23.63, 36.6 ], [ 24.07, 35.88 ], [ 25.16, 35.84 ], [ 25.84, 36.52 ], [ 25.63, 36.88 ], [ 25.63, 36.9 ], [ 25.61, 36.93 ], [ 25.6, 36.95 ], [ 25.57, 37.0 ], [ 25.47, 37.16 ], [ 25.42, 37.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.97, 36.98 ], [ -124.92, 37.22 ], [ -125.31, 36.87 ], [ -125.82, 36.64 ], [ -125.74, 35.85 ], [ -124.74, 35.56 ], [ -123.86, 36.12 ], [ -123.97, 36.98 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.78, 36.55 ], [ -13.54, 37.19 ], [ -14.62, 37.06 ], [ -14.92, 36.29 ], [ -14.16, 35.66 ], [ -13.1, 35.79 ], [ -12.78, 36.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.85, 35.76 ], [ 35.99, 36.02 ], [ 35.79, 36.33 ], [ 36.2, 36.61 ], [ 36.02, 36.93 ], [ 35.64, 36.61 ], [ 35.31, 36.57 ], [ 35.28, 36.55 ], [ 35.6, 35.79 ], [ 35.85, 35.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.56, 36.58 ], [ -5.17, 36.42 ], [ -5.61, 36.01 ], [ -6.03, 36.18 ], [ -6.43, 36.74 ], [ -6.64, 36.34 ], [ -5.95, 35.69 ], [ -5.45, 35.92 ], [ -5.32, 35.71 ], [ -4.85, 35.74 ], [ -4.45, 36.47 ], [ -4.56, 36.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.93, 36.74 ], [ 28.26, 36.73 ], [ 28.25, 37.04 ], [ 27.49, 36.99 ], [ 27.48, 36.98 ], [ 27.47, 36.97 ], [ 27.35, 36.86 ], [ 27.35, 36.85 ], [ 26.98, 36.5 ], [ 26.97, 36.5 ], [ 26.95, 36.47 ], [ 27.35, 35.74 ], [ 28.43, 35.67 ], [ 29.14, 36.34 ], [ 29.12, 36.38 ], [ 29.11, 36.39 ], [ 29.11, 36.4 ], [ 29.03, 36.54 ], [ 29.03, 36.55 ], [ 28.94, 36.72 ], [ 28.94, 36.73 ], [ 28.93, 36.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.09, 36.93 ], [ 7.18, 36.93 ], [ 7.2, 37.06 ], [ 7.09, 36.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.24, 37.11 ], [ 7.22, 37.09 ], [ 7.76, 36.96 ], [ 8.47, 36.9 ], [ 8.39, 37.01 ], [ 7.24, 37.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.32, 37.03 ], [ 15.08, 36.65 ], [ 14.5, 36.79 ], [ 14.31, 37.03 ], [ 14.11, 37.01 ], [ 13.52, 36.25 ], [ 14.06, 35.63 ], [ 15.19, 35.73 ], [ 15.79, 36.46 ], [ 15.32, 37.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.3, 37.06 ], [ 15.29, 37.04 ], [ 15.32, 37.04 ], [ 15.3, 37.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.73, 36.27 ], [ -8.45, 36.94 ], [ -9.54, 36.86 ], [ -9.89, 36.11 ], [ -9.17, 35.44 ], [ -8.09, 35.52 ], [ -7.73, 36.27 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.33, 36.22 ], [ 32.03, 36.54 ], [ 31.3, 36.82 ], [ 30.85, 36.85 ], [ 30.58, 36.6 ], [ 30.27, 36.31 ], [ 30.23, 36.27 ], [ 30.59, 35.52 ], [ 31.67, 35.44 ], [ 32.39, 36.11 ], [ 32.33, 36.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.91, 35.52 ], [ 172.27, 36.27 ], [ 171.55, 36.94 ], [ 170.46, 36.86 ], [ 170.11, 36.11 ], [ 170.83, 35.44 ], [ 171.91, 35.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.59, 36.46 ], [ 132.62, 36.92 ], [ 131.89, 36.46 ], [ 132.02, 36.0 ], [ 131.9, 35.54 ], [ 132.45, 35.19 ], [ 132.84, 35.5 ], [ 133.4, 35.45 ], [ 133.43, 35.47 ], [ 133.54, 35.52 ], [ 133.58, 35.54 ], [ 133.71, 36.0 ], [ 133.59, 36.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.27, 35.55 ], [ 135.24, 35.55 ], [ 135.26, 35.53 ], [ 135.27, 35.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.3, 35.66 ], [ 135.25, 35.62 ], [ 135.27, 35.57 ], [ 135.3, 35.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.31, 35.7 ], [ 135.39, 35.98 ], [ 135.28, 36.44 ], [ 134.33, 36.91 ], [ 133.59, 36.46 ], [ 133.71, 36.0 ], [ 133.58, 35.54 ], [ 133.59, 35.53 ], [ 134.28, 35.56 ], [ 134.54, 35.67 ], [ 135.31, 35.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.89, 36.46 ], [ 130.91, 36.9 ], [ 130.19, 36.43 ], [ 130.33, 35.97 ], [ 130.22, 35.51 ], [ 130.96, 35.06 ], [ 131.9, 35.54 ], [ 132.02, 36.0 ], [ 131.89, 36.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.59, 36.6 ], [ 136.05, 36.88 ], [ 135.28, 36.44 ], [ 135.39, 35.98 ], [ 135.31, 35.7 ], [ 135.3, 35.66 ], [ 135.27, 35.57 ], [ 135.27, 35.55 ], [ 135.26, 35.53 ], [ 135.29, 35.49 ], [ 135.29, 35.49 ], [ 135.33, 35.47 ], [ 135.34, 35.47 ], [ 135.81, 35.53 ], [ 135.96, 35.99 ], [ 136.59, 36.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.78, 35.56 ], [ 139.78, 35.56 ], [ 139.78, 35.56 ], [ 139.78, 35.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.78, 35.56 ], [ 139.64, 35.3 ], [ 139.09, 35.07 ], [ 139.31, 34.91 ], [ 139.84, 35.13 ], [ 139.78, 35.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.38, 36.1 ], [ 11.82, 36.7 ], [ 11.25, 36.59 ], [ 10.92, 36.65 ], [ 10.55, 36.37 ], [ 10.49, 36.05 ], [ 11.05, 35.63 ], [ 11.16, 35.24 ], [ 11.81, 35.32 ], [ 12.38, 36.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.96, 36.01 ], [ -11.7, 36.66 ], [ -12.78, 36.55 ], [ -13.1, 35.79 ], [ -12.36, 35.14 ], [ -11.3, 35.25 ], [ -10.96, 36.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.28, 36.55 ], [ 34.38, 36.64 ], [ 33.66, 36.18 ], [ 33.46, 36.01 ], [ 33.74, 35.39 ], [ 33.91, 35.24 ], [ 34.86, 35.14 ], [ 35.6, 35.79 ], [ 35.28, 36.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.05, 36.12 ], [ 141.17, 36.64 ], [ 140.63, 36.38 ], [ 140.62, 35.66 ], [ 140.4, 35.22 ], [ 140.98, 34.81 ], [ 141.94, 35.2 ], [ 142.1, 35.65 ], [ 142.05, 36.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.37, 36.21 ], [ -0.02, 36.62 ], [ -1.13, 36.6 ], [ -1.57, 35.88 ], [ -1.22, 35.51 ], [ -0.47, 35.89 ], [ -0.11, 35.79 ], [ 0.37, 36.21 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89, 36.61 ], [ 22.53, 36.62 ], [ 22.51, 36.61 ], [ 22.48, 36.58 ], [ 22.38, 36.47 ], [ 21.87, 35.92 ], [ 22.32, 35.21 ], [ 23.41, 35.19 ], [ 23.54, 35.33 ], [ 23.78, 35.58 ], [ 24.07, 35.88 ], [ 23.63, 36.6 ], [ 23.06, 36.61 ], [ 22.89, 36.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.82, 35.14 ], [ 17.43, 35.86 ], [ 16.92, 36.53 ], [ 15.79, 36.46 ], [ 15.19, 35.73 ], [ 15.71, 35.08 ], [ 16.82, 35.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.23, 36.32 ], [ -74.33, 36.53 ], [ -74.92, 35.93 ], [ -74.4, 35.13 ], [ -73.31, 34.92 ], [ -72.73, 35.51 ], [ -73.23, 36.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.66, 35.84 ], [ -3.34, 36.52 ], [ -4.45, 36.47 ], [ -4.85, 35.74 ], [ -4.29, 35.18 ], [ -3.92, 35.27 ], [ -3.34, 35.2 ], [ -2.95, 35.33 ], [ -2.66, 35.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.95, 36.47 ], [ 25.84, 36.52 ], [ 25.16, 35.84 ], [ 25.47, 35.3 ], [ 26.03, 35.23 ], [ 26.27, 35.08 ], [ 26.66, 35.06 ], [ 27.12, 35.51 ], [ 27.19, 35.58 ], [ 27.35, 35.74 ], [ 26.95, 36.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.63, 34.88 ], [ -121.25, 35.66 ], [ -121.11, 35.07 ], [ -120.63, 34.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.73, 35.98 ], [ 142.88, 36.51 ], [ 142.05, 36.12 ], [ 142.1, 35.65 ], [ 141.94, 35.2 ], [ 142.65, 34.69 ], [ 143.61, 35.07 ], [ 143.77, 35.51 ], [ 143.73, 35.98 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.71, 36.19 ], [ -122.1, 36.35 ], [ -122.93, 35.81 ], [ -122.79, 34.91 ], [ -121.84, 34.55 ], [ -121.11, 35.07 ], [ -121.25, 35.66 ], [ -121.71, 36.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.95, 35.69 ], [ -6.64, 36.34 ], [ -7.73, 36.27 ], [ -8.09, 35.52 ], [ -7.39, 34.85 ], [ -6.32, 34.93 ], [ -6.09, 35.37 ], [ -5.95, 35.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.21, 36.33 ], [ 29.14, 36.34 ], [ 28.43, 35.67 ], [ 28.82, 34.93 ], [ 29.89, 34.85 ], [ 30.59, 35.52 ], [ 30.23, 36.27 ], [ 30.15, 36.27 ], [ 29.78, 36.13 ], [ 29.21, 36.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.16, 35.66 ], [ -14.92, 36.29 ], [ -15.99, 36.15 ], [ -16.28, 35.38 ], [ -15.52, 34.75 ], [ -14.47, 34.89 ], [ -14.16, 35.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.06, 35.63 ], [ 13.52, 36.25 ], [ 12.38, 36.1 ], [ 11.81, 35.32 ], [ 12.37, 34.73 ], [ 13.48, 34.88 ], [ 14.06, 35.63 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.71, 36.09 ], [ -75.73, 35.62 ], [ -76.12, 35.35 ], [ -76.48, 35.4 ], [ -76.06, 34.73 ], [ -74.97, 34.54 ], [ -74.4, 35.13 ], [ -74.92, 35.93 ], [ -75.71, 36.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.93, 35.81 ], [ -123.86, 36.12 ], [ -124.74, 35.56 ], [ -124.6, 34.76 ], [ -123.58, 34.41 ], [ -122.79, 34.91 ], [ -122.93, 35.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.2, 34.71 ], [ 33.02, 34.6 ], [ 33.07, 34.6 ], [ 33.2, 34.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.87, 36.06 ], [ 32.58, 36.09 ], [ 32.54, 36.09 ], [ 32.53, 36.09 ], [ 32.39, 36.11 ], [ 31.67, 35.44 ], [ 32.02, 34.69 ], [ 32.93, 34.61 ], [ 32.5, 34.7 ], [ 32.32, 34.89 ], [ 33.02, 35.36 ], [ 33.74, 35.39 ], [ 33.46, 36.01 ], [ 32.87, 36.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.22, 35.51 ], [ -1.57, 35.88 ], [ -2.66, 35.84 ], [ -2.95, 35.33 ], [ -2.9, 35.15 ], [ -2.01, 35.08 ], [ -1.26, 35.4 ], [ -1.22, 35.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.46, 34.99 ], [ 24.74, 34.93 ], [ 24.39, 35.19 ], [ 23.62, 35.23 ], [ 23.54, 35.33 ], [ 23.41, 35.19 ], [ 23.84, 34.47 ], [ 24.92, 34.43 ], [ 25.46, 34.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.47, 35.3 ], [ 25.16, 35.84 ], [ 24.07, 35.88 ], [ 23.78, 35.58 ], [ 24.27, 35.36 ], [ 24.97, 35.43 ], [ 25.47, 35.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.88, 35.32 ], [ -31.76, 35.85 ], [ -32.76, 35.56 ], [ -32.9, 34.76 ], [ -32.06, 34.24 ], [ -31.04, 34.52 ], [ -30.88, 35.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.36, 35.14 ], [ -13.1, 35.79 ], [ -14.16, 35.66 ], [ -14.47, 34.89 ], [ -13.73, 34.26 ], [ -12.68, 34.38 ], [ -12.36, 35.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.85, 35.76 ], [ 35.6, 35.79 ], [ 34.86, 35.14 ], [ 35.18, 34.38 ], [ 35.69, 34.32 ], [ 35.7, 34.32 ], [ 35.7, 34.32 ], [ 35.71, 34.32 ], [ 35.72, 34.32 ], [ 36.0, 34.55 ], [ 35.88, 34.91 ], [ 35.85, 35.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.29, 34.9 ], [ -6.09, 35.37 ], [ -6.32, 34.93 ], [ -6.29, 34.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.85, 35.74 ], [ -5.32, 35.71 ], [ -4.71, 35.22 ], [ -4.29, 35.18 ], [ -4.85, 35.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.43, 35.67 ], [ 27.35, 35.74 ], [ 27.19, 35.58 ], [ 27.12, 35.51 ], [ 26.66, 35.06 ], [ 27.06, 34.33 ], [ 28.13, 34.26 ], [ 28.82, 34.93 ], [ 28.43, 35.67 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.71, 35.08 ], [ 15.19, 35.73 ], [ 14.06, 35.63 ], [ 13.48, 34.88 ], [ 14.02, 34.25 ], [ 15.13, 34.34 ], [ 15.71, 35.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.21, 33.99 ], [ -29.2, 34.25 ], [ -29.02, 35.06 ], [ -29.87, 35.6 ], [ -30.88, 35.32 ], [ -31.04, 34.52 ], [ -30.21, 33.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.45, 34.17 ], [ 132.46, 34.17 ], [ 132.46, 34.18 ], [ 132.45, 34.18 ], [ 132.45, 34.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.46, 34.22 ], [ 132.48, 34.23 ], [ 132.47, 34.25 ], [ 132.46, 34.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.22, 34.41 ], [ 132.64, 34.2 ], [ 132.49, 34.36 ], [ 132.48, 34.34 ], [ 132.48, 34.33 ], [ 132.47, 34.28 ], [ 132.49, 34.14 ], [ 132.51, 34.13 ], [ 132.55, 34.11 ], [ 132.55, 34.11 ], [ 132.57, 34.09 ], [ 132.78, 33.97 ], [ 133.54, 33.98 ], [ 133.65, 34.19 ], [ 134.16, 34.39 ], [ 134.17, 34.46 ], [ 134.18, 34.49 ], [ 134.18, 34.52 ], [ 134.2, 34.61 ], [ 134.2, 34.62 ], [ 134.21, 34.66 ], [ 133.97, 34.52 ], [ 133.22, 34.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.22, 34.67 ], [ 134.21, 34.67 ], [ 134.21, 34.67 ], [ 134.22, 34.67 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.23, 34.73 ], [ 134.21, 34.73 ], [ 134.22, 34.71 ], [ 134.23, 34.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.4, 35.45 ], [ 133.42, 35.45 ], [ 133.43, 35.47 ], [ 133.4, 35.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.58, 35.54 ], [ 133.54, 35.52 ], [ 133.59, 35.53 ], [ 133.58, 35.54 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.02, 34.01 ], [ 131.01, 34.02 ], [ 131.01, 34.02 ], [ 131.02, 34.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.02, 34.01 ], [ 131.55, 33.7 ], [ 131.97, 33.92 ], [ 131.71, 34.05 ], [ 131.24, 33.91 ], [ 131.02, 34.01 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.42, 34.15 ], [ 132.45, 34.16 ], [ 132.45, 34.17 ], [ 132.45, 34.18 ], [ 132.46, 34.22 ], [ 132.47, 34.25 ], [ 132.47, 34.28 ], [ 132.48, 34.33 ], [ 132.48, 34.34 ], [ 132.49, 34.36 ], [ 132.22, 34.05 ], [ 132.42, 34.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.27, 34.41 ], [ 131.85, 34.71 ], [ 132.45, 35.19 ], [ 131.9, 35.54 ], [ 130.96, 35.06 ], [ 130.79, 34.15 ], [ 130.87, 34.1 ], [ 130.92, 34.35 ], [ 131.27, 34.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.39, 34.85 ], [ -8.09, 35.52 ], [ -9.17, 35.44 ], [ -9.52, 34.69 ], [ -8.81, 34.03 ], [ -7.75, 34.11 ], [ -7.39, 34.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.83, 35.44 ], [ 170.48, 34.69 ], [ 171.19, 34.03 ], [ 172.25, 34.11 ], [ 172.61, 34.85 ], [ 171.91, 35.52 ], [ 170.83, 35.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.26, 34.7 ], [ 134.22, 34.67 ], [ 134.21, 34.67 ], [ 134.21, 34.66 ], [ 134.2, 34.62 ], [ 134.2, 34.61 ], [ 134.18, 34.52 ], [ 134.18, 34.49 ], [ 134.17, 34.46 ], [ 134.16, 34.39 ], [ 134.65, 34.18 ], [ 134.69, 33.8 ], [ 134.87, 33.69 ], [ 135.18, 33.84 ], [ 135.11, 34.32 ], [ 135.44, 34.57 ], [ 134.76, 34.77 ], [ 134.23, 34.73 ], [ 134.22, 34.71 ], [ 134.26, 34.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.33, 35.47 ], [ 135.32, 35.46 ], [ 135.33, 35.46 ], [ 135.34, 35.47 ], [ 135.33, 35.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.29, 35.49 ], [ 135.29, 35.49 ], [ 135.29, 35.48 ], [ 135.29, 35.48 ], [ 135.29, 35.49 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.96, 35.06 ], [ 130.22, 35.51 ], [ 129.28, 35.03 ], [ 129.13, 34.1 ], [ 129.66, 33.8 ], [ 129.67, 33.79 ], [ 129.68, 33.79 ], [ 129.78, 33.73 ], [ 129.89, 33.67 ], [ 130.79, 34.15 ], [ 130.96, 35.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.73, 34.52 ], [ 136.73, 34.52 ], [ 136.74, 34.52 ], [ 136.73, 34.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.57, 34.68 ], [ 137.03, 34.79 ], [ 136.68, 35.01 ], [ 136.52, 34.7 ], [ 136.87, 34.49 ], [ 136.31, 34.17 ], [ 136.15, 33.9 ], [ 136.53, 33.65 ], [ 137.44, 34.08 ], [ 137.57, 34.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.09, 35.07 ], [ 138.75, 34.73 ], [ 138.56, 35.09 ], [ 138.2, 34.6 ], [ 137.57, 34.68 ], [ 137.44, 34.08 ], [ 138.19, 33.59 ], [ 139.11, 34.01 ], [ 139.15, 34.18 ], [ 139.16, 34.24 ], [ 139.31, 34.91 ], [ 139.09, 35.07 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.37, 34.73 ], [ 11.81, 35.32 ], [ 11.16, 35.24 ], [ 10.57, 34.53 ], [ 10.35, 34.43 ], [ 10.36, 34.42 ], [ 10.36, 34.42 ], [ 10.7, 33.95 ], [ 11.25, 33.85 ], [ 11.8, 33.95 ], [ 12.37, 34.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.98, 34.81 ], [ 140.4, 35.22 ], [ 139.84, 35.13 ], [ 139.31, 34.91 ], [ 139.16, 34.24 ], [ 139.15, 34.18 ], [ 139.11, 34.01 ], [ 139.86, 33.51 ], [ 140.78, 33.91 ], [ 140.98, 34.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.57, 34.6 ], [ -11.3, 35.25 ], [ -12.36, 35.14 ], [ -12.68, 34.38 ], [ -11.96, 33.73 ], [ -10.91, 33.84 ], [ -10.57, 34.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.86, 35.14 ], [ 33.91, 35.24 ], [ 33.61, 34.82 ], [ 33.2, 34.71 ], [ 33.07, 34.6 ], [ 33.41, 33.84 ], [ 34.46, 33.73 ], [ 35.18, 34.38 ], [ 34.86, 35.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41, 35.19 ], [ 22.32, 35.21 ], [ 21.68, 34.52 ], [ 22.13, 33.8 ], [ 23.2, 33.78 ], [ 23.84, 34.47 ], [ 23.41, 35.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.65, 34.69 ], [ 141.94, 35.2 ], [ 140.98, 34.81 ], [ 140.78, 33.91 ], [ 141.54, 33.41 ], [ 142.46, 33.8 ], [ 142.65, 34.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.39, 33.84 ], [ -118.54, 34.04 ], [ -118.94, 34.05 ], [ -119.56, 34.41 ], [ -120.1, 34.47 ], [ -120.0, 33.98 ], [ -119.99, 33.94 ], [ -119.96, 33.8 ], [ -119.04, 33.41 ], [ -118.39, 33.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.73, 33.75 ], [ 17.33, 34.47 ], [ 16.82, 35.14 ], [ 15.71, 35.08 ], [ 15.13, 34.34 ], [ 15.64, 33.69 ], [ 16.73, 33.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.66, 35.06 ], [ 26.27, 35.08 ], [ 25.46, 34.99 ], [ 24.92, 34.43 ], [ 25.33, 33.7 ], [ 26.39, 33.65 ], [ 27.06, 34.33 ], [ 26.66, 35.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.63, 34.88 ], [ -121.11, 35.07 ], [ -121.84, 34.55 ], [ -121.67, 33.67 ], [ -120.73, 33.3 ], [ -119.96, 33.8 ], [ -119.99, 33.94 ], [ -120.0, 33.98 ], [ -120.1, 34.47 ], [ -120.65, 34.58 ], [ -120.63, 34.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.29, 34.9 ], [ -6.32, 34.93 ], [ -7.39, 34.85 ], [ -7.75, 34.11 ], [ -7.35, 33.73 ], [ -6.73, 34.17 ], [ -6.29, 34.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.84, 34.55 ], [ -122.79, 34.91 ], [ -123.58, 34.41 ], [ -123.4, 33.57 ], [ -122.45, 33.18 ], [ -121.67, 33.67 ], [ -121.84, 34.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.73, 34.26 ], [ -14.47, 34.89 ], [ -15.52, 34.75 ], [ -15.81, 33.98 ], [ -15.07, 33.35 ], [ -14.04, 33.49 ], [ -13.73, 34.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.36, 34.42 ], [ 10.02, 34.18 ], [ 10.07, 33.96 ], [ 10.43, 33.67 ], [ 10.7, 33.95 ], [ 10.36, 34.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.36, 34.42 ], [ 10.35, 34.43 ], [ 10.34, 34.42 ], [ 10.36, 34.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.02, 34.25 ], [ 13.48, 34.88 ], [ 12.37, 34.73 ], [ 11.8, 33.95 ], [ 12.35, 33.36 ], [ 13.45, 33.5 ], [ 14.02, 34.25 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.97, 34.54 ], [ -76.06, 34.73 ], [ -76.62, 34.13 ], [ -76.07, 33.34 ], [ -74.98, 33.15 ], [ -74.44, 33.74 ], [ -74.97, 34.54 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.81, 34.03 ], [ -9.52, 34.69 ], [ -10.57, 34.6 ], [ -10.91, 33.84 ], [ -10.2, 33.19 ], [ -9.16, 33.28 ], [ -8.81, 34.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.93, 34.61 ], [ 32.02, 34.69 ], [ 31.31, 34.03 ], [ 31.66, 33.28 ], [ 32.7, 33.19 ], [ 33.41, 33.84 ], [ 33.07, 34.6 ], [ 33.02, 34.6 ], [ 32.93, 34.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.21, 33.99 ], [ -31.04, 34.52 ], [ -32.06, 34.24 ], [ -32.28, 33.47 ], [ -31.45, 32.94 ], [ -30.41, 33.2 ], [ -30.21, 33.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.92, 34.43 ], [ 23.84, 34.47 ], [ 23.2, 33.78 ], [ 23.62, 33.06 ], [ 24.68, 33.02 ], [ 25.33, 33.7 ], [ 24.92, 34.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.71, 34.32 ], [ 35.71, 34.31 ], [ 35.72, 34.32 ], [ 35.71, 34.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.7, 34.32 ], [ 35.7, 34.32 ], [ 35.7, 34.32 ], [ 35.7, 34.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.08, 32.94 ], [ 35.69, 34.32 ], [ 35.18, 34.38 ], [ 34.46, 33.73 ], [ 34.78, 32.97 ], [ 35.08, 32.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.62, 34.13 ], [ -77.66, 34.35 ], [ -78.22, 33.75 ], [ -77.7, 32.92 ], [ -76.61, 32.75 ], [ -76.07, 33.34 ], [ -76.62, 34.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.64, 33.69 ], [ 15.13, 34.34 ], [ 14.02, 34.25 ], [ 13.45, 33.5 ], [ 13.98, 32.87 ], [ 15.07, 32.96 ], [ 15.64, 33.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.1, 33.02 ], [ 133.02, 32.77 ], [ 133.07, 32.8 ], [ 133.1, 33.02 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.11, 33.04 ], [ 133.1, 33.03 ], [ 133.1, 33.03 ], [ 133.11, 33.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.55, 34.11 ], [ 132.55, 34.11 ], [ 132.55, 34.1 ], [ 132.55, 34.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.45, 34.16 ], [ 132.42, 34.15 ], [ 132.22, 34.05 ], [ 131.97, 33.92 ], [ 131.55, 33.7 ], [ 131.54, 33.68 ], [ 131.74, 33.58 ], [ 131.82, 33.13 ], [ 132.0, 32.94 ], [ 131.76, 32.6 ], [ 132.19, 32.34 ], [ 132.97, 32.75 ], [ 132.48, 32.9 ], [ 132.37, 33.47 ], [ 132.78, 33.97 ], [ 132.57, 34.09 ], [ 132.51, 34.13 ], [ 132.49, 34.14 ], [ 132.45, 34.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.87, 33.69 ], [ 134.69, 33.8 ], [ 134.38, 33.63 ], [ 134.18, 33.24 ], [ 133.93, 33.48 ], [ 133.27, 33.36 ], [ 133.11, 33.04 ], [ 133.1, 33.03 ], [ 133.1, 33.02 ], [ 133.07, 32.8 ], [ 133.84, 32.34 ], [ 134.73, 32.79 ], [ 134.87, 33.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.83, 32.72 ], [ 129.83, 32.74 ], [ 129.82, 32.73 ], [ 129.83, 32.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.86, 32.71 ], [ 129.87, 32.73 ], [ 129.87, 32.75 ], [ 129.85, 32.72 ], [ 129.86, 32.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.81, 32.74 ], [ 129.78, 32.79 ], [ 129.78, 32.76 ], [ 129.81, 32.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.78, 32.81 ], [ 129.78, 32.82 ], [ 129.78, 32.82 ], [ 129.78, 32.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.8, 32.93 ], [ 129.8, 32.95 ], [ 129.8, 32.95 ], [ 129.8, 32.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.8, 32.93 ], [ 129.79, 32.91 ], [ 129.79, 32.91 ], [ 129.79, 32.9 ], [ 129.81, 33.06 ], [ 129.8, 33.0 ], [ 129.8, 32.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.5, 32.61 ], [ 129.91, 32.68 ], [ 130.15, 32.54 ], [ 130.2, 32.52 ], [ 130.27, 32.48 ], [ 130.41, 32.4 ], [ 130.42, 32.39 ], [ 130.43, 32.39 ], [ 130.5, 32.35 ], [ 130.5, 32.61 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.84, 33.29 ], [ 129.85, 33.29 ], [ 129.84, 33.3 ], [ 129.84, 33.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.84, 33.31 ], [ 129.85, 33.32 ], [ 129.84, 33.32 ], [ 129.84, 33.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.85, 33.33 ], [ 129.85, 33.33 ], [ 129.85, 33.34 ], [ 129.85, 33.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.85, 33.34 ], [ 129.85, 33.35 ], [ 129.85, 33.35 ], [ 129.85, 33.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.85, 33.38 ], [ 129.87, 33.39 ], [ 129.85, 33.4 ], [ 129.85, 33.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.79, 34.15 ], [ 129.89, 33.67 ], [ 129.87, 33.53 ], [ 130.41, 33.61 ], [ 130.45, 33.79 ], [ 130.95, 33.93 ], [ 131.09, 33.63 ], [ 131.54, 33.68 ], [ 131.55, 33.7 ], [ 131.02, 34.01 ], [ 131.01, 34.02 ], [ 130.87, 34.1 ], [ 130.79, 34.15 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.02, 33.73 ], [ 136.01, 33.73 ], [ 136.01, 33.73 ], [ 136.02, 33.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.02, 33.73 ], [ 135.76, 33.48 ], [ 135.4, 33.58 ], [ 135.18, 33.84 ], [ 134.87, 33.69 ], [ 134.73, 32.79 ], [ 135.49, 32.32 ], [ 136.38, 32.75 ], [ 136.53, 33.65 ], [ 136.15, 33.9 ], [ 136.02, 33.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.35, 33.73 ], [ -7.75, 34.11 ], [ -8.81, 34.03 ], [ -9.16, 33.28 ], [ -8.8, 32.95 ], [ -8.51, 33.26 ], [ -7.35, 33.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.79, 32.91 ], [ 129.79, 32.9 ], [ 129.79, 32.9 ], [ 129.79, 32.91 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.8, 32.93 ], [ 129.8, 32.95 ], [ 129.79, 32.94 ], [ 129.79, 32.91 ], [ 129.8, 32.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.68, 33.79 ], [ 129.67, 33.79 ], [ 129.68, 33.79 ], [ 129.68, 33.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.78, 33.73 ], [ 129.66, 33.8 ], [ 129.13, 34.1 ], [ 128.24, 33.62 ], [ 128.13, 32.7 ], [ 128.9, 32.28 ], [ 129.78, 32.76 ], [ 129.78, 32.79 ], [ 129.78, 32.81 ], [ 129.78, 32.82 ], [ 129.8, 33.0 ], [ 129.81, 33.06 ], [ 129.84, 33.29 ], [ 129.84, 33.3 ], [ 129.84, 33.31 ], [ 129.84, 33.32 ], [ 129.85, 33.33 ], [ 129.85, 33.34 ], [ 129.85, 33.34 ], [ 129.85, 33.35 ], [ 129.85, 33.38 ], [ 129.85, 33.4 ], [ 129.87, 33.53 ], [ 129.89, 33.67 ], [ 129.78, 33.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.19, 33.59 ], [ 137.44, 34.08 ], [ 136.53, 33.65 ], [ 136.38, 32.75 ], [ 137.14, 32.28 ], [ 138.04, 32.7 ], [ 138.19, 33.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.13, 32.59 ], [ -117.22, 32.68 ], [ -117.21, 32.62 ], [ -117.13, 32.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.86, 33.51 ], [ 139.11, 34.01 ], [ 138.19, 33.59 ], [ 138.04, 32.7 ], [ 138.81, 32.22 ], [ 139.71, 32.62 ], [ 139.78, 33.09 ], [ 139.79, 33.14 ], [ 139.86, 33.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.07, 33.35 ], [ -15.81, 33.98 ], [ -16.85, 33.83 ], [ -17.13, 33.05 ], [ -16.77, 32.76 ], [ -16.74, 32.73 ], [ -16.54, 32.56 ], [ -16.52, 32.54 ], [ -16.39, 32.43 ], [ -15.37, 32.58 ], [ -15.07, 33.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.35, 33.36 ], [ 11.8, 33.95 ], [ 11.25, 33.85 ], [ 10.7, 33.95 ], [ 10.43, 33.67 ], [ 10.7, 33.5 ], [ 11.11, 33.58 ], [ 11.18, 33.21 ], [ 11.57, 33.17 ], [ 12.06, 32.96 ], [ 12.35, 33.36 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.28, 33.72 ], [ -118.28, 33.73 ], [ -118.28, 33.72 ], [ -118.28, 33.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.28, 33.72 ], [ -118.39, 33.84 ], [ -119.04, 33.41 ], [ -118.88, 32.53 ], [ -117.97, 32.14 ], [ -117.21, 32.62 ], [ -117.22, 32.68 ], [ -117.36, 33.16 ], [ -117.78, 33.54 ], [ -118.28, 33.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.54, 33.41 ], [ 140.78, 33.91 ], [ 139.86, 33.51 ], [ 139.79, 33.14 ], [ 139.78, 33.09 ], [ 139.71, 32.62 ], [ 140.47, 32.14 ], [ 141.38, 32.53 ], [ 141.54, 33.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.22, 33.75 ], [ -78.62, 33.84 ], [ -79.1, 33.47 ], [ -79.19, 33.17 ], [ -79.75, 32.86 ], [ -79.73, 32.84 ], [ -79.71, 32.83 ], [ -79.27, 32.32 ], [ -78.75, 32.43 ], [ -78.23, 32.32 ], [ -77.7, 32.92 ], [ -78.22, 33.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.46, 33.73 ], [ 33.41, 33.84 ], [ 32.7, 33.19 ], [ 33.04, 32.44 ], [ 34.07, 32.33 ], [ 34.78, 32.97 ], [ 34.46, 33.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.44, 33.12 ], [ 19.98, 33.82 ], [ 18.9, 33.81 ], [ 18.3, 33.1 ], [ 18.78, 32.41 ], [ 19.84, 32.41 ], [ 20.44, 33.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.2, 33.78 ], [ 22.13, 33.8 ], [ 21.5, 33.11 ], [ 21.62, 32.92 ], [ 22.12, 32.93 ], [ 23.11, 32.64 ], [ 23.12, 32.51 ], [ 23.62, 33.06 ], [ 23.2, 33.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.04, 33.41 ], [ -119.96, 33.8 ], [ -120.73, 33.3 ], [ -120.58, 32.43 ], [ -119.66, 32.05 ], [ -118.88, 32.53 ], [ -119.04, 33.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.16, 32.05 ], [ 143.08, 32.43 ], [ 143.23, 33.3 ], [ 142.46, 33.8 ], [ 141.54, 33.41 ], [ 141.38, 32.53 ], [ 142.16, 32.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.23, 33.07 ], [ 16.73, 33.75 ], [ 15.64, 33.69 ], [ 15.07, 32.96 ], [ 15.57, 32.3 ], [ 16.65, 32.35 ], [ 17.23, 33.07 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.39, 33.65 ], [ 25.33, 33.7 ], [ 24.68, 33.02 ], [ 25.09, 32.29 ], [ 26.13, 32.24 ], [ 26.78, 32.92 ], [ 26.39, 33.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.73, 33.3 ], [ -121.67, 33.67 ], [ -122.45, 33.18 ], [ -122.29, 32.33 ], [ -121.35, 31.95 ], [ -120.58, 32.43 ], [ -120.73, 33.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.98, 32.87 ], [ 13.45, 33.5 ], [ 12.35, 33.36 ], [ 12.06, 32.96 ], [ 12.76, 32.79 ], [ 13.24, 32.91 ], [ 13.91, 32.78 ], [ 13.98, 32.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.8, 32.95 ], [ -9.16, 33.28 ], [ -10.2, 33.19 ], [ -10.54, 32.44 ], [ -9.84, 31.78 ], [ -9.58, 31.81 ], [ -9.25, 32.2 ], [ -9.27, 32.55 ], [ -8.8, 32.95 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.7, 33.19 ], [ 31.66, 33.28 ], [ 30.97, 32.62 ], [ 31.31, 31.87 ], [ 32.34, 31.78 ], [ 33.04, 32.44 ], [ 32.7, 33.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 33.11 ], [ 20.44, 33.12 ], [ 19.84, 32.41 ], [ 20.05, 32.09 ], [ 20.58, 32.55 ], [ 21.62, 32.92 ], [ 21.5, 33.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.78, 32.41 ], [ 18.3, 33.1 ], [ 17.23, 33.07 ], [ 16.65, 32.35 ], [ 17.13, 31.67 ], [ 18.19, 31.7 ], [ 18.78, 32.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.68, 33.02 ], [ 23.62, 33.06 ], [ 23.12, 32.51 ], [ 23.26, 32.21 ], [ 24.09, 32.02 ], [ 24.81, 32.0 ], [ 25.09, 32.29 ], [ 24.68, 33.02 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.77, 32.76 ], [ -17.13, 33.05 ], [ -18.15, 32.89 ], [ -18.42, 32.11 ], [ -17.68, 31.5 ], [ -16.67, 31.66 ], [ -16.39, 32.43 ], [ -16.52, 32.54 ], [ -16.54, 32.56 ], [ -16.74, 32.73 ], [ -16.77, 32.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.57, 32.33 ], [ -12.28, 32.97 ], [ -13.31, 32.85 ], [ -13.62, 32.09 ], [ -12.91, 31.45 ], [ -11.89, 31.57 ], [ -11.57, 32.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.08, 32.94 ], [ 34.78, 32.97 ], [ 34.07, 32.33 ], [ 34.39, 31.57 ], [ 34.47, 31.56 ], [ 34.78, 32.12 ], [ 35.08, 32.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.57, 32.3 ], [ 15.07, 32.96 ], [ 13.98, 32.87 ], [ 13.91, 32.78 ], [ 14.46, 32.53 ], [ 15.22, 32.38 ], [ 15.36, 32.03 ], [ 15.57, 32.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.73, 32.84 ], [ -79.75, 32.86 ], [ -79.79, 32.81 ], [ -80.52, 32.39 ], [ -81.05, 31.79 ], [ -80.41, 31.24 ], [ -79.58, 31.48 ], [ -79.55, 31.94 ], [ -79.27, 32.32 ], [ -79.71, 32.83 ], [ -79.73, 32.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.61, 32.75 ], [ -77.7, 32.92 ], [ -78.23, 32.32 ], [ -77.95, 31.94 ], [ -77.92, 31.48 ], [ -77.09, 31.24 ], [ -76.31, 31.9 ], [ -76.33, 32.36 ], [ -76.61, 32.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.21, 32.11 ], [ 27.83, 32.85 ], [ 26.78, 32.92 ], [ 26.13, 32.24 ], [ 26.52, 31.5 ], [ 26.56, 31.5 ], [ 27.55, 31.44 ], [ 28.21, 32.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.84, 32.34 ], [ 133.07, 32.8 ], [ 133.02, 32.77 ], [ 132.97, 32.75 ], [ 132.19, 32.34 ], [ 132.09, 31.44 ], [ 132.86, 31.0 ], [ 133.73, 31.44 ], [ 133.84, 32.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.78, 31.23 ], [ 130.67, 31.55 ], [ 130.56, 31.36 ], [ 130.78, 31.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.76, 32.6 ], [ 131.33, 31.38 ], [ 130.96, 31.13 ], [ 131.23, 30.98 ], [ 132.09, 31.44 ], [ 132.19, 32.34 ], [ 131.76, 32.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.49, 32.32 ], [ 134.73, 32.79 ], [ 133.84, 32.34 ], [ 133.73, 31.44 ], [ 134.5, 30.99 ], [ 135.37, 31.43 ], [ 135.49, 32.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.81, 32.74 ], [ 129.78, 32.76 ], [ 128.9, 32.28 ], [ 128.82, 31.37 ], [ 129.6, 30.94 ], [ 130.2, 31.28 ], [ 130.33, 31.63 ], [ 130.24, 32.13 ], [ 130.5, 32.35 ], [ 130.43, 32.39 ], [ 130.42, 32.39 ], [ 130.41, 32.4 ], [ 130.27, 32.48 ], [ 130.2, 32.52 ], [ 130.15, 32.54 ], [ 129.91, 32.68 ], [ 129.86, 32.71 ], [ 129.85, 32.72 ], [ 129.83, 32.72 ], [ 129.82, 32.73 ], [ 129.81, 32.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.2, 31.23 ], [ -113.61, 31.33 ], [ -113.89, 31.6 ], [ -114.17, 31.5 ], [ -114.57, 31.74 ], [ -114.52, 31.39 ], [ -113.64, 30.97 ], [ -113.2, 31.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.14, 32.28 ], [ 136.38, 32.75 ], [ 135.49, 32.32 ], [ 135.37, 31.43 ], [ 136.14, 30.97 ], [ 137.02, 31.39 ], [ 137.14, 32.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.97, 32.62 ], [ 29.92, 32.71 ], [ 29.24, 32.04 ], [ 29.6, 31.3 ], [ 29.99, 31.27 ], [ 30.65, 31.39 ], [ 31.03, 31.6 ], [ 31.31, 31.87 ], [ 30.97, 32.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.26, 32.04 ], [ 172.58, 32.71 ], [ 171.53, 32.62 ], [ 171.19, 31.87 ], [ 171.87, 31.21 ], [ 172.9, 31.3 ], [ 173.26, 32.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.9, 32.28 ], [ 128.13, 32.7 ], [ 127.27, 32.21 ], [ 127.19, 31.3 ], [ 127.97, 30.89 ], [ 128.82, 31.37 ], [ 128.9, 32.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.57, 31.74 ], [ -114.81, 31.82 ], [ -114.89, 31.17 ], [ -114.52, 31.39 ], [ -114.57, 31.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.81, 32.22 ], [ 138.04, 32.7 ], [ 137.14, 32.28 ], [ 137.02, 31.39 ], [ 137.79, 30.92 ], [ 138.68, 31.33 ], [ 138.81, 32.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.13, 32.59 ], [ -117.21, 32.62 ], [ -117.97, 32.14 ], [ -117.84, 31.26 ], [ -116.95, 30.86 ], [ -116.35, 31.23 ], [ -116.68, 31.58 ], [ -116.61, 31.85 ], [ -116.88, 32.03 ], [ -117.13, 32.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.47, 32.14 ], [ 139.71, 32.62 ], [ 138.81, 32.22 ], [ 138.68, 31.33 ], [ 139.45, 30.86 ], [ 140.34, 31.26 ], [ 140.47, 32.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.97, 32.14 ], [ -118.88, 32.53 ], [ -119.66, 32.05 ], [ -119.52, 31.18 ], [ -118.61, 30.79 ], [ -117.84, 31.26 ], [ -117.97, 32.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.16, 32.05 ], [ 141.38, 32.53 ], [ 140.47, 32.14 ], [ 140.34, 31.26 ], [ 141.11, 30.79 ], [ 142.02, 31.18 ], [ 142.16, 32.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.84, 31.78 ], [ -10.54, 32.44 ], [ -11.57, 32.33 ], [ -11.89, 31.57 ], [ -11.19, 30.93 ], [ -10.17, 31.03 ], [ -9.84, 31.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.07, 32.33 ], [ 33.04, 32.44 ], [ 32.34, 31.78 ], [ 32.66, 31.05 ], [ 33.16, 31.04 ], [ 33.98, 31.2 ], [ 34.39, 31.57 ], [ 34.07, 32.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.23, 32.32 ], [ -78.75, 32.43 ], [ -79.27, 32.32 ], [ -79.55, 31.94 ], [ -79.58, 31.48 ], [ -79.24, 31.14 ], [ -78.75, 30.97 ], [ -78.26, 31.14 ], [ -77.92, 31.48 ], [ -77.95, 31.94 ], [ -78.23, 32.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.66, 32.05 ], [ -120.58, 32.43 ], [ -121.35, 31.95 ], [ -121.21, 31.09 ], [ -120.29, 30.7 ], [ -119.52, 31.18 ], [ -119.66, 32.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.05, 32.09 ], [ 19.84, 32.41 ], [ 18.78, 32.41 ], [ 18.19, 31.7 ], [ 18.65, 31.0 ], [ 19.69, 31.0 ], [ 20.03, 31.4 ], [ 19.92, 31.83 ], [ 20.05, 32.09 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.13, 31.67 ], [ 16.65, 32.35 ], [ 15.57, 32.3 ], [ 15.36, 32.03 ], [ 15.65, 31.46 ], [ 16.03, 31.28 ], [ 16.77, 31.22 ], [ 17.13, 31.67 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.13, 32.24 ], [ 25.09, 32.29 ], [ 24.81, 32.0 ], [ 25.0, 31.96 ], [ 25.19, 31.52 ], [ 25.82, 31.61 ], [ 26.52, 31.5 ], [ 26.13, 32.24 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.24, 32.04 ], [ 28.21, 32.11 ], [ 27.55, 31.44 ], [ 27.68, 31.18 ], [ 28.42, 31.09 ], [ 29.12, 30.81 ], [ 29.6, 31.3 ], [ 29.24, 32.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.91, 31.45 ], [ -13.62, 32.09 ], [ -14.64, 31.95 ], [ -14.94, 31.19 ], [ -14.23, 30.56 ], [ -13.22, 30.69 ], [ -12.91, 31.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.85, 30.72 ], [ -9.85, 31.39 ], [ -9.58, 31.81 ], [ -9.84, 31.78 ], [ -10.17, 31.03 ], [ -9.85, 30.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.88, 31.53 ], [ 31.79, 31.29 ], [ 32.66, 31.05 ], [ 32.34, 31.78 ], [ 31.31, 31.87 ], [ 31.03, 31.6 ], [ 31.59, 31.44 ], [ 31.88, 31.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.14, 30.3 ], [ -87.07, 30.44 ], [ -87.33, 30.31 ], [ -86.96, 30.01 ], [ -86.14, 30.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.91, 30.66 ], [ 20.17, 31.17 ], [ 20.03, 31.4 ], [ 19.69, 31.0 ], [ 19.91, 30.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.65, 31.0 ], [ 18.19, 31.7 ], [ 17.13, 31.67 ], [ 16.77, 31.22 ], [ 18.18, 30.79 ], [ 18.36, 30.64 ], [ 18.65, 31.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.19, 30.93 ], [ -11.89, 31.57 ], [ -12.91, 31.45 ], [ -13.22, 30.69 ], [ -12.52, 30.05 ], [ -11.51, 30.17 ], [ -11.19, 30.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.47, 31.56 ], [ 34.39, 31.57 ], [ 33.98, 31.2 ], [ 34.47, 31.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.56, 31.5 ], [ 27.34, 31.37 ], [ 27.68, 31.18 ], [ 27.55, 31.44 ], [ 26.56, 31.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 30.97 ], [ -79.24, 31.14 ], [ -79.58, 31.48 ], [ -80.41, 31.24 ], [ -80.55, 30.32 ], [ -80.21, 29.97 ], [ -79.72, 29.81 ], [ -78.75, 30.22 ], [ -78.75, 30.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.5, 30.99 ], [ 133.73, 31.44 ], [ 132.86, 31.0 ], [ 132.77, 30.1 ], [ 133.55, 29.66 ], [ 134.4, 30.1 ], [ 134.5, 30.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.86, 31.0 ], [ 132.09, 31.44 ], [ 131.23, 30.98 ], [ 131.15, 30.08 ], [ 131.92, 29.65 ], [ 132.77, 30.1 ], [ 132.86, 31.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.57, 29.71 ], [ -112.76, 30.19 ], [ -113.13, 30.81 ], [ -113.2, 31.23 ], [ -113.64, 30.97 ], [ -113.54, 30.08 ], [ -112.67, 29.65 ], [ -112.57, 29.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.78, 31.23 ], [ 130.56, 31.36 ], [ 130.2, 31.28 ], [ 129.6, 30.94 ], [ 129.53, 30.04 ], [ 129.84, 29.87 ], [ 129.9, 29.84 ], [ 130.3, 29.62 ], [ 131.15, 30.08 ], [ 131.23, 30.98 ], [ 130.96, 31.13 ], [ 130.78, 31.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.64, 30.97 ], [ -114.52, 31.39 ], [ -114.89, 31.17 ], [ -114.72, 30.94 ], [ -114.66, 30.2 ], [ -114.39, 29.79 ], [ -114.17, 29.71 ], [ -113.54, 30.08 ], [ -113.64, 30.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.6, 30.94 ], [ 128.82, 31.37 ], [ 127.97, 30.89 ], [ 127.91, 29.98 ], [ 128.69, 29.57 ], [ 129.53, 30.04 ], [ 129.6, 30.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.68, 29.74 ], [ -115.79, 30.25 ], [ -116.05, 30.49 ], [ -116.05, 30.79 ], [ -116.35, 31.23 ], [ -116.95, 30.86 ], [ -116.83, 29.99 ], [ -115.95, 29.58 ], [ -115.68, 29.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.45, 30.86 ], [ 138.68, 31.33 ], [ 137.79, 30.92 ], [ 137.68, 30.04 ], [ 138.45, 29.58 ], [ 139.33, 29.99 ], [ 139.45, 30.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.97, 30.89 ], [ 127.19, 31.3 ], [ 126.35, 30.81 ], [ 126.3, 29.9 ], [ 127.08, 29.5 ], [ 127.91, 29.98 ], [ 127.97, 30.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.99, 31.27 ], [ 29.6, 31.3 ], [ 29.12, 30.81 ], [ 29.56, 30.98 ], [ 29.99, 31.27 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.95, 30.86 ], [ -117.84, 31.26 ], [ -118.61, 30.79 ], [ -118.48, 29.92 ], [ -117.59, 29.52 ], [ -116.83, 29.99 ], [ -116.95, 30.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.11, 30.79 ], [ 140.34, 31.26 ], [ 139.45, 30.86 ], [ 139.33, 29.99 ], [ 140.1, 29.52 ], [ 140.98, 29.92 ], [ 141.11, 30.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.23, 30.56 ], [ -14.94, 31.19 ], [ -15.95, 31.04 ], [ -16.24, 30.27 ], [ -15.52, 29.65 ], [ -14.52, 29.79 ], [ -14.23, 30.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.61, 30.79 ], [ -119.52, 31.18 ], [ -120.29, 30.7 ], [ -120.15, 29.84 ], [ -119.25, 29.45 ], [ -118.48, 29.92 ], [ -118.61, 30.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.75, 29.45 ], [ 142.65, 29.84 ], [ 142.79, 30.7 ], [ 142.02, 31.18 ], [ 141.11, 30.79 ], [ 140.98, 29.92 ], [ 141.75, 29.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.85, 30.72 ], [ -10.17, 31.03 ], [ -11.19, 30.93 ], [ -11.51, 30.17 ], [ -10.82, 29.52 ], [ -10.04, 29.6 ], [ -9.79, 29.86 ], [ -9.6, 30.4 ], [ -9.85, 30.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.7, 29.59 ], [ 32.56, 29.96 ], [ 32.36, 29.62 ], [ 32.7, 29.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.69, 31.0 ], [ 18.65, 31.0 ], [ 18.36, 30.64 ], [ 18.95, 30.28 ], [ 19.38, 30.31 ], [ 19.91, 30.66 ], [ 19.69, 31.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.08, 29.68 ], [ 123.11, 30.58 ], [ 122.32, 30.97 ], [ 121.5, 30.44 ], [ 121.49, 30.19 ], [ 121.99, 29.58 ], [ 121.92, 29.32 ], [ 122.26, 29.16 ], [ 123.08, 29.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.52, 30.05 ], [ -13.22, 30.69 ], [ -14.23, 30.56 ], [ -14.52, 29.79 ], [ -13.82, 29.16 ], [ -13.49, 29.21 ], [ -13.44, 29.22 ], [ -12.83, 29.29 ], [ -12.52, 30.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.33, 30.31 ], [ -87.75, 30.29 ], [ -88.34, 30.4 ], [ -88.55, 30.32 ], [ -88.59, 29.42 ], [ -87.81, 28.82 ], [ -87.0, 29.11 ], [ -86.96, 30.01 ], [ -87.33, 30.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.72, 29.81 ], [ -80.21, 29.97 ], [ -80.55, 30.32 ], [ -81.34, 30.08 ], [ -81.0, 29.21 ], [ -80.63, 28.66 ], [ -79.71, 29.06 ], [ -79.72, 29.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.37, 29.68 ], [ -86.14, 30.3 ], [ -86.96, 30.01 ], [ -87.0, 29.11 ], [ -86.25, 28.49 ], [ -85.44, 28.77 ], [ -85.37, 29.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.52, 29.65 ], [ -16.24, 30.27 ], [ -17.24, 30.11 ], [ -17.51, 29.34 ], [ -16.8, 28.73 ], [ -15.81, 28.88 ], [ -15.52, 29.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.82, 29.52 ], [ -11.51, 30.17 ], [ -12.52, 30.05 ], [ -12.83, 29.29 ], [ -12.14, 28.66 ], [ -11.14, 28.77 ], [ -10.82, 29.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.84, 28.84 ], [ 34.59, 28.66 ], [ 34.64, 28.66 ], [ 34.84, 28.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.55, 29.66 ], [ 132.77, 30.1 ], [ 131.92, 29.65 ], [ 131.85, 28.75 ], [ 132.62, 28.32 ], [ 133.46, 28.77 ], [ 133.55, 29.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.58, 28.41 ], [ -112.15, 29.0 ], [ -112.21, 29.27 ], [ -112.57, 29.71 ], [ -112.67, 29.65 ], [ -112.58, 28.76 ], [ -111.73, 28.33 ], [ -111.58, 28.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.92, 29.65 ], [ 131.15, 30.08 ], [ 130.3, 29.62 ], [ 130.24, 28.72 ], [ 131.01, 28.29 ], [ 131.85, 28.75 ], [ 131.92, 29.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.67, 29.65 ], [ -113.54, 30.08 ], [ -114.17, 29.71 ], [ -113.63, 29.27 ], [ -113.19, 28.8 ], [ -113.06, 28.48 ], [ -112.82, 28.62 ], [ -112.81, 28.63 ], [ -112.58, 28.76 ], [ -112.67, 29.65 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.47, 28.29 ], [ 129.46, 28.29 ], [ 129.46, 28.28 ], [ 129.47, 28.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.59, 28.35 ], [ 129.65, 28.39 ], [ 129.62, 28.39 ], [ 129.59, 28.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.84, 29.87 ], [ 129.53, 30.04 ], [ 128.69, 29.57 ], [ 128.63, 28.67 ], [ 129.28, 28.32 ], [ 129.71, 28.43 ], [ 130.24, 28.72 ], [ 130.3, 29.62 ], [ 129.9, 29.84 ], [ 129.84, 29.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.27, 28.7 ], [ -114.96, 29.37 ], [ -115.68, 29.74 ], [ -115.95, 29.58 ], [ -115.84, 28.7 ], [ -114.97, 28.28 ], [ -114.27, 28.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.95, 29.58 ], [ -116.83, 29.99 ], [ -117.59, 29.52 ], [ -117.48, 28.65 ], [ -116.6, 28.24 ], [ -115.84, 28.7 ], [ -115.95, 29.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.1, 29.52 ], [ 139.33, 29.99 ], [ 138.45, 29.58 ], [ 138.34, 28.7 ], [ 139.1, 28.24 ], [ 139.98, 28.65 ], [ 140.1, 29.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.69, 29.57 ], [ 127.91, 29.98 ], [ 127.08, 29.5 ], [ 127.03, 28.6 ], [ 127.81, 28.19 ], [ 128.63, 28.67 ], [ 128.69, 29.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.99, 29.26 ], [ -91.53, 29.52 ], [ -91.62, 29.74 ], [ -91.98, 29.79 ], [ -92.29, 29.53 ], [ -92.58, 29.57 ], [ -92.6, 28.74 ], [ -91.82, 28.17 ], [ -91.01, 28.49 ], [ -90.99, 29.17 ], [ -90.99, 29.23 ], [ -90.99, 29.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.91, 28.39 ], [ -83.82, 29.31 ], [ -84.5, 29.91 ], [ -84.88, 29.73 ], [ -85.37, 29.68 ], [ -85.44, 28.77 ], [ -84.71, 28.13 ], [ -83.91, 28.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.59, 29.52 ], [ -118.48, 29.92 ], [ -119.25, 29.45 ], [ -119.12, 28.59 ], [ -118.24, 28.19 ], [ -117.48, 28.65 ], [ -117.59, 29.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.75, 29.45 ], [ 140.98, 29.92 ], [ 140.1, 29.52 ], [ 139.98, 28.65 ], [ 140.74, 28.19 ], [ 141.62, 28.59 ], [ 141.75, 29.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.08, 29.5 ], [ 126.3, 29.9 ], [ 125.47, 29.4 ], [ 125.43, 28.5 ], [ 126.21, 28.1 ], [ 127.03, 28.6 ], [ 127.08, 29.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.25, 29.45 ], [ -120.15, 29.84 ], [ -120.92, 29.38 ], [ -120.78, 28.52 ], [ -119.88, 28.12 ], [ -119.12, 28.59 ], [ -119.25, 29.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.47, 29.4 ], [ 124.68, 29.8 ], [ 123.86, 29.29 ], [ 123.84, 28.39 ], [ 124.62, 28.0 ], [ 125.43, 28.5 ], [ 125.47, 29.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.82, 29.16 ], [ -14.52, 29.79 ], [ -15.52, 29.65 ], [ -15.81, 28.88 ], [ -15.11, 28.26 ], [ -14.15, 28.4 ], [ -14.09, 28.5 ], [ -14.01, 28.69 ], [ -14.0, 28.72 ], [ -13.82, 29.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.53, 29.31 ], [ -90.99, 29.26 ], [ -90.99, 29.23 ], [ -90.99, 29.17 ], [ -91.01, 28.49 ], [ -90.24, 27.9 ], [ -89.44, 28.21 ], [ -89.41, 28.93 ], [ -89.41, 29.12 ], [ -89.84, 29.45 ], [ -90.05, 29.38 ], [ -90.18, 29.09 ], [ -90.53, 29.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.86, 29.29 ], [ 123.08, 29.68 ], [ 122.26, 29.16 ], [ 122.25, 28.25 ], [ 123.03, 27.88 ], [ 123.84, 28.39 ], [ 123.86, 29.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.09, 28.72 ], [ -10.64, 28.95 ], [ -10.22, 29.31 ], [ -10.04, 29.6 ], [ -10.82, 29.52 ], [ -11.14, 28.77 ], [ -11.09, 28.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.7, 29.59 ], [ 32.36, 29.62 ], [ 32.59, 29.35 ], [ 32.62, 28.98 ], [ 33.14, 28.29 ], [ 33.33, 28.47 ], [ 33.18, 29.0 ], [ 32.89, 29.23 ], [ 32.7, 29.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.67, 28.85 ], [ 121.5, 28.65 ], [ 121.36, 28.14 ], [ 120.87, 28.0 ], [ 121.11, 27.89 ], [ 121.12, 27.88 ], [ 121.15, 27.87 ], [ 121.15, 27.87 ], [ 121.17, 27.86 ], [ 121.19, 27.85 ], [ 121.19, 27.85 ], [ 121.21, 27.84 ], [ 121.45, 27.73 ], [ 122.25, 28.25 ], [ 122.26, 29.16 ], [ 121.92, 29.32 ], [ 121.63, 29.2 ], [ 121.67, 28.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.81, 28.82 ], [ -88.59, 29.42 ], [ -89.11, 29.22 ], [ -89.41, 28.93 ], [ -89.44, 28.21 ], [ -88.67, 27.62 ], [ -87.87, 27.91 ], [ -87.81, 28.82 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.8, 28.73 ], [ -17.51, 29.34 ], [ -18.51, 29.18 ], [ -18.78, 28.4 ], [ -18.07, 27.8 ], [ -17.99, 27.81 ], [ -17.89, 27.83 ], [ -17.08, 27.96 ], [ -16.8, 28.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.09, 28.5 ], [ -14.03, 28.59 ], [ -14.01, 28.69 ], [ -14.09, 28.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.65, 29.11 ], [ -13.49, 29.21 ], [ -13.82, 29.16 ], [ -14.0, 28.72 ], [ -13.93, 28.23 ], [ -13.43, 27.77 ], [ -13.0, 27.83 ], [ -12.39, 28.03 ], [ -12.14, 28.66 ], [ -12.83, 29.29 ], [ -13.44, 29.22 ], [ -13.65, 29.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.35, 27.85 ], [ 34.87, 28.08 ], [ 34.95, 27.9 ], [ 35.29, 27.86 ], [ 35.29, 27.85 ], [ 35.35, 27.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.74, 28.41 ], [ 34.84, 28.84 ], [ 34.64, 28.66 ], [ 34.74, 28.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.78, 27.84 ], [ 51.4, 27.93 ], [ 51.01, 28.84 ], [ 50.45, 28.73 ], [ 50.7, 27.98 ], [ 51.46, 27.84 ], [ 51.46, 27.84 ], [ 51.72, 27.8 ], [ 51.78, 27.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.57, 28.36 ], [ -96.57, 27.92 ], [ -95.79, 27.38 ], [ -94.99, 27.72 ], [ -94.98, 28.62 ], [ -95.36, 28.89 ], [ -96.21, 28.58 ], [ -96.57, 28.36 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.25, 28.49 ], [ -87.0, 29.11 ], [ -87.81, 28.82 ], [ -87.87, 27.91 ], [ -87.12, 27.3 ], [ -86.32, 27.58 ], [ -86.25, 28.49 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 27.96 ], [ -78.75, 28.72 ], [ -79.71, 29.06 ], [ -80.63, 28.66 ], [ -80.58, 28.15 ], [ -80.42, 27.82 ], [ -79.69, 27.56 ], [ -78.75, 27.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.4, 28.41 ], [ -94.19, 28.97 ], [ -94.98, 28.62 ], [ -94.99, 27.72 ], [ -94.21, 27.17 ], [ -93.42, 27.51 ], [ -93.4, 28.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.87, 27.79 ], [ 48.88, 27.79 ], [ 48.87, 27.8 ], [ 48.87, 27.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.93, 27.43 ], [ 50.7, 27.98 ], [ 50.45, 28.73 ], [ 49.44, 28.94 ], [ 48.68, 28.39 ], [ 48.85, 27.86 ], [ 48.89, 27.75 ], [ 48.93, 27.63 ], [ 48.99, 27.61 ], [ 49.93, 27.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.11, 28.26 ], [ -15.81, 28.88 ], [ -16.8, 28.73 ], [ -17.08, 27.96 ], [ -16.38, 27.35 ], [ -15.4, 27.5 ], [ -15.11, 28.26 ] ], [ [ -16.15, 28.58 ], [ -16.43, 28.15 ], [ -16.7, 28.0 ], [ -16.91, 28.34 ], [ -16.15, 28.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.71, 28.13 ], [ -85.44, 28.77 ], [ -86.25, 28.49 ], [ -86.32, 27.58 ], [ -85.59, 26.95 ], [ -84.79, 27.22 ], [ -84.71, 28.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.09, 28.72 ], [ -11.14, 28.77 ], [ -12.14, 28.66 ], [ -12.39, 28.03 ], [ -11.45, 28.34 ], [ -11.09, 28.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.64, 28.66 ], [ 34.59, 28.66 ], [ 34.41, 28.29 ], [ 34.42, 27.97 ], [ 34.06, 27.81 ], [ 33.33, 28.47 ], [ 33.14, 28.29 ], [ 33.49, 27.98 ], [ 33.5, 27.66 ], [ 33.72, 27.32 ], [ 34.27, 27.26 ], [ 34.95, 27.9 ], [ 34.87, 28.08 ], [ 34.74, 28.41 ], [ 34.64, 28.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.55, 27.42 ], [ -110.54, 27.43 ], [ -110.55, 27.43 ], [ -110.55, 27.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.55, 27.42 ], [ -110.61, 27.8 ], [ -110.95, 27.87 ], [ -111.58, 28.41 ], [ -111.73, 28.33 ], [ -111.65, 27.44 ], [ -110.81, 27.0 ], [ -110.39, 27.24 ], [ -110.55, 27.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.73, 28.33 ], [ -112.58, 28.76 ], [ -112.81, 28.63 ], [ -112.82, 28.62 ], [ -113.06, 28.48 ], [ -112.84, 28.44 ], [ -112.77, 27.86 ], [ -112.4, 27.59 ], [ -112.14, 27.16 ], [ -112.08, 27.19 ], [ -112.05, 27.21 ], [ -111.65, 27.44 ], [ -111.73, 28.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.62, 28.32 ], [ 131.85, 28.75 ], [ 131.01, 28.29 ], [ 130.95, 27.41 ], [ 131.71, 26.98 ], [ 132.55, 27.43 ], [ 132.62, 28.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.02, 26.99 ], [ -114.1, 27.1 ], [ -114.4, 27.17 ], [ -114.02, 26.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.42, 27.19 ], [ -114.49, 27.39 ], [ -114.9, 27.67 ], [ -114.87, 27.41 ], [ -114.42, 27.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.92, 27.83 ], [ -114.47, 27.78 ], [ -114.09, 28.15 ], [ -114.04, 28.47 ], [ -114.27, 28.7 ], [ -114.97, 28.28 ], [ -114.92, 27.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.82, 28.17 ], [ -92.6, 28.74 ], [ -93.4, 28.41 ], [ -93.42, 27.51 ], [ -92.64, 26.94 ], [ -91.85, 27.27 ], [ -91.82, 28.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.01, 28.29 ], [ 130.24, 28.72 ], [ 129.71, 28.43 ], [ 129.65, 28.39 ], [ 129.59, 28.35 ], [ 129.47, 28.29 ], [ 129.46, 28.28 ], [ 129.4, 28.15 ], [ 129.35, 27.36 ], [ 130.12, 26.94 ], [ 130.95, 27.41 ], [ 131.01, 28.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.97, 28.28 ], [ -115.84, 28.7 ], [ -116.6, 28.24 ], [ -116.49, 27.37 ], [ -115.63, 26.96 ], [ -114.87, 27.41 ], [ -114.9, 27.67 ], [ -114.92, 27.83 ], [ -114.97, 28.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.28, 28.32 ], [ 128.63, 28.67 ], [ 127.81, 28.19 ], [ 127.76, 27.29 ], [ 128.53, 26.88 ], [ 129.35, 27.36 ], [ 129.4, 28.15 ], [ 129.28, 28.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.6, 28.24 ], [ -117.48, 28.65 ], [ -118.24, 28.19 ], [ -118.12, 27.32 ], [ -117.25, 26.91 ], [ -116.49, 27.37 ], [ -116.6, 28.24 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.87, 27.8 ], [ 48.93, 27.63 ], [ 48.89, 27.75 ], [ 48.87, 27.79 ], [ 48.87, 27.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.68, 28.39 ], [ 48.63, 28.07 ], [ 48.85, 27.86 ], [ 48.68, 28.39 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.81, 28.19 ], [ 127.03, 28.6 ], [ 126.21, 28.1 ], [ 126.18, 27.21 ], [ 126.95, 26.81 ], [ 127.76, 27.29 ], [ 127.81, 28.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.24, 28.19 ], [ -119.12, 28.59 ], [ -119.88, 28.12 ], [ -119.75, 27.26 ], [ -118.87, 26.86 ], [ -118.12, 27.32 ], [ -118.24, 28.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.21, 28.1 ], [ 125.43, 28.5 ], [ 124.62, 28.0 ], [ 124.59, 27.1 ], [ 125.37, 26.71 ], [ 126.18, 27.21 ], [ 126.21, 28.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.24, 27.9 ], [ -91.01, 28.49 ], [ -91.82, 28.17 ], [ -91.85, 27.27 ], [ -91.07, 26.69 ], [ -90.27, 27.01 ], [ -90.24, 27.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.84, 27.08 ], [ 56.36, 27.19 ], [ 55.63, 26.98 ], [ 55.73, 26.94 ], [ 56.06, 26.78 ], [ 56.21, 26.71 ], [ 56.84, 27.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.07, 27.8 ], [ -18.78, 28.4 ], [ -19.76, 28.23 ], [ -20.03, 27.46 ], [ -19.32, 26.86 ], [ -18.34, 27.03 ], [ -18.1, 27.7 ], [ -18.08, 27.76 ], [ -18.07, 27.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.93, 28.23 ], [ -14.15, 28.4 ], [ -15.11, 28.26 ], [ -15.4, 27.5 ], [ -14.71, 26.88 ], [ -13.73, 27.01 ], [ -13.43, 27.77 ], [ -13.93, 28.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.29, 26.81 ], [ -83.2, 27.73 ], [ -83.91, 28.39 ], [ -84.71, 28.13 ], [ -84.79, 27.22 ], [ -84.08, 26.56 ], [ -83.29, 26.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.62, 28.0 ], [ 123.84, 28.39 ], [ 123.03, 27.88 ], [ 123.01, 26.98 ], [ 123.79, 26.6 ], [ 124.59, 27.1 ], [ 124.62, 28.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.37, 26.99 ], [ 52.84, 27.2 ], [ 52.43, 27.64 ], [ 51.78, 27.84 ], [ 51.72, 27.8 ], [ 51.98, 27.08 ], [ 52.5, 27.02 ], [ 52.95, 26.76 ], [ 53.37, 26.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.03, 27.88 ], [ 122.25, 28.25 ], [ 121.45, 27.73 ], [ 121.44, 26.83 ], [ 122.22, 26.46 ], [ 123.01, 26.98 ], [ 123.03, 27.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.67, 27.62 ], [ -89.44, 28.21 ], [ -90.24, 27.9 ], [ -90.27, 27.01 ], [ -89.51, 26.42 ], [ -88.71, 26.72 ], [ -88.67, 27.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.96, 26.62 ], [ 120.05, 26.79 ], [ 119.93, 26.79 ], [ 119.89, 26.66 ], [ 119.96, 26.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.87, 28.0 ], [ 120.67, 27.71 ], [ 120.53, 27.23 ], [ 120.01, 26.6 ], [ 120.14, 26.54 ], [ 120.15, 26.54 ], [ 120.47, 26.39 ], [ 120.48, 26.38 ], [ 120.49, 26.38 ], [ 120.5, 26.37 ], [ 120.65, 26.3 ], [ 121.44, 26.83 ], [ 121.45, 27.73 ], [ 121.21, 27.84 ], [ 121.19, 27.85 ], [ 121.19, 27.85 ], [ 121.17, 27.86 ], [ 121.15, 27.87 ], [ 121.15, 27.87 ], [ 121.12, 27.88 ], [ 121.11, 27.89 ], [ 120.87, 28.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.27, 27.12 ], [ -169.79, 27.88 ], [ -170.83, 27.99 ], [ -171.33, 27.34 ], [ -170.8, 26.61 ], [ -169.78, 26.51 ], [ -169.27, 27.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.46, 27.84 ], [ 50.7, 27.98 ], [ 49.93, 27.43 ], [ 50.18, 26.68 ], [ 51.2, 26.51 ], [ 51.98, 27.08 ], [ 51.72, 27.8 ], [ 51.46, 27.84 ], [ 51.46, 27.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.08, 27.76 ], [ -17.99, 27.81 ], [ -18.07, 27.8 ], [ -18.08, 27.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.38, 27.35 ], [ -17.08, 27.96 ], [ -17.89, 27.83 ], [ -18.1, 27.7 ], [ -18.34, 27.03 ], [ -17.64, 26.43 ], [ -16.66, 26.58 ], [ -16.38, 27.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.91, 26.77 ], [ -77.81, 27.56 ], [ -78.75, 27.96 ], [ -79.69, 27.56 ], [ -79.68, 26.8 ], [ -78.75, 26.44 ], [ -78.6, 26.78 ], [ -78.35, 26.69 ], [ -77.91, 26.77 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.58, 26.13 ], [ -95.8, 26.48 ], [ -95.79, 27.38 ], [ -96.57, 27.92 ], [ -97.19, 27.64 ], [ -97.36, 27.2 ], [ -97.29, 26.62 ], [ -96.58, 26.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.86, 26.66 ], [ 119.7, 26.81 ], [ 119.55, 26.62 ], [ 119.76, 26.59 ], [ 119.78, 26.61 ], [ 119.81, 26.63 ], [ 119.86, 26.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.52, 26.82 ], [ -13.16, 27.69 ], [ -13.0, 27.83 ], [ -13.43, 27.77 ], [ -13.73, 27.01 ], [ -13.52, 26.82 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.05, 26.84 ], [ 35.35, 27.85 ], [ 35.29, 27.85 ], [ 35.29, 27.86 ], [ 34.95, 27.9 ], [ 34.27, 27.26 ], [ 34.57, 26.5 ], [ 35.55, 26.38 ], [ 36.05, 26.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.69, 27.56 ], [ -80.42, 27.82 ], [ -80.03, 26.8 ], [ -80.04, 26.64 ], [ -79.68, 26.8 ], [ -79.69, 27.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.21, 27.17 ], [ -94.99, 27.72 ], [ -95.79, 27.38 ], [ -95.8, 26.48 ], [ -95.02, 25.93 ], [ -94.23, 26.27 ], [ -94.21, 27.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.15, 26.66 ], [ 50.02, 26.56 ], [ 50.03, 26.57 ], [ 50.04, 26.58 ], [ 50.15, 26.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.66, 27.31 ], [ 49.67, 27.3 ], [ 49.67, 27.31 ], [ 49.66, 27.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.74, 26.94 ], [ 50.15, 26.66 ], [ 50.18, 26.68 ], [ 49.93, 27.43 ], [ 48.99, 27.61 ], [ 49.26, 27.52 ], [ 49.33, 27.21 ], [ 49.59, 27.1 ], [ 49.74, 26.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.64, 26.94 ], [ -93.42, 27.51 ], [ -94.21, 27.17 ], [ -94.23, 26.27 ], [ -93.45, 25.72 ], [ -92.66, 26.05 ], [ -92.64, 26.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.71, 26.88 ], [ -15.4, 27.5 ], [ -16.38, 27.35 ], [ -16.66, 26.58 ], [ -15.97, 25.97 ], [ -15.0, 26.12 ], [ -14.71, 26.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.31, 26.11 ], [ -112.34, 26.17 ], [ -112.33, 26.12 ], [ -112.31, 26.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.81, 27.0 ], [ -111.65, 27.44 ], [ -112.05, 27.21 ], [ -112.08, 27.19 ], [ -112.14, 27.16 ], [ -111.56, 26.7 ], [ -111.31, 26.07 ], [ -111.3, 25.79 ], [ -111.23, 25.83 ], [ -111.18, 25.86 ], [ -110.74, 26.12 ], [ -110.81, 27.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.34, 26.17 ], [ -113.05, 26.6 ], [ -113.15, 26.77 ], [ -113.62, 26.72 ], [ -114.02, 26.99 ], [ -113.93, 26.11 ], [ -113.09, 25.68 ], [ -112.33, 26.12 ], [ -112.34, 26.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.45, 25.93 ], [ -109.25, 26.31 ], [ -109.41, 26.66 ], [ -109.84, 26.77 ], [ -109.96, 27.1 ], [ -110.39, 27.24 ], [ -110.81, 27.0 ], [ -110.74, 26.12 ], [ -109.91, 25.66 ], [ -109.45, 25.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.42, 27.19 ], [ -114.87, 27.41 ], [ -115.63, 26.96 ], [ -115.53, 26.08 ], [ -114.68, 25.66 ], [ -113.93, 26.11 ], [ -114.02, 26.99 ], [ -114.4, 27.17 ], [ -114.42, 27.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.71, 26.98 ], [ 130.95, 27.41 ], [ 130.12, 26.94 ], [ 130.07, 26.05 ], [ 130.83, 25.63 ], [ 131.65, 26.09 ], [ 131.71, 26.98 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.33, 27.34 ], [ -172.34, 27.4 ], [ -172.82, 26.71 ], [ -172.29, 25.99 ], [ -171.29, 25.95 ], [ -170.8, 26.61 ], [ -171.33, 27.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.63, 26.96 ], [ -116.49, 27.37 ], [ -117.25, 26.91 ], [ -117.14, 26.05 ], [ -116.28, 25.63 ], [ -115.53, 26.08 ], [ -115.63, 26.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.27, 27.26 ], [ 33.72, 27.32 ], [ 33.84, 27.26 ], [ 34.02, 26.61 ], [ 34.24, 26.18 ], [ 34.57, 26.5 ], [ 34.27, 27.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.12, 26.94 ], [ 129.35, 27.36 ], [ 128.53, 26.88 ], [ 128.49, 25.99 ], [ 129.25, 25.58 ], [ 130.07, 26.05 ], [ 130.12, 26.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.53, 26.88 ], [ 127.76, 27.29 ], [ 126.95, 26.81 ], [ 126.91, 25.92 ], [ 127.68, 25.51 ], [ 128.49, 25.99 ], [ 128.53, 26.88 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.07, 26.69 ], [ -91.85, 27.27 ], [ -92.64, 26.94 ], [ -92.66, 26.05 ], [ -91.88, 25.48 ], [ -91.09, 25.8 ], [ -91.07, 26.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.08, 26.56 ], [ -84.79, 27.22 ], [ -85.59, 26.95 ], [ -85.65, 26.04 ], [ -84.94, 25.38 ], [ -84.16, 25.64 ], [ -84.08, 26.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.95, 26.81 ], [ 126.18, 27.21 ], [ 125.37, 26.71 ], [ 125.34, 25.82 ], [ 126.11, 25.42 ], [ 126.91, 25.92 ], [ 126.95, 26.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.61, 26.51 ], [ 54.31, 26.71 ], [ 53.69, 26.74 ], [ 53.37, 26.99 ], [ 52.95, 26.76 ], [ 53.13, 25.88 ], [ 54.02, 25.42 ], [ 54.74, 25.84 ], [ 54.61, 26.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.75, 25.74 ], [ 57.3, 25.81 ], [ 57.07, 26.41 ], [ 57.06, 26.7 ], [ 56.84, 27.08 ], [ 56.21, 26.71 ], [ 56.3, 26.24 ], [ 56.33, 26.1 ], [ 56.33, 26.1 ], [ 56.37, 25.86 ], [ 57.26, 25.45 ], [ 57.75, 25.74 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.37, 25.86 ], [ 56.36, 25.86 ], [ 56.36, 25.85 ], [ 56.37, 25.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.33, 26.1 ], [ 56.33, 26.1 ], [ 56.33, 26.1 ], [ 56.33, 26.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.73, 26.94 ], [ 55.63, 26.98 ], [ 54.85, 26.52 ], [ 54.61, 26.51 ], [ 54.74, 25.84 ], [ 55.49, 25.49 ], [ 55.96, 25.8 ], [ 56.3, 26.24 ], [ 56.21, 26.71 ], [ 56.06, 26.78 ], [ 55.73, 26.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.72, 26.51 ], [ -168.23, 27.12 ], [ -168.75, 27.03 ], [ -169.27, 27.12 ], [ -169.78, 26.51 ], [ -169.26, 25.76 ], [ -168.75, 25.67 ], [ -168.24, 25.76 ], [ -167.72, 26.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.37, 26.71 ], [ 124.59, 27.1 ], [ 123.79, 26.6 ], [ 123.77, 25.7 ], [ 124.54, 25.32 ], [ 125.34, 25.82 ], [ 125.37, 26.71 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.95, 26.76 ], [ 52.5, 27.02 ], [ 51.98, 27.08 ], [ 51.2, 26.51 ], [ 51.34, 26.12 ], [ 51.59, 25.78 ], [ 51.6, 25.78 ], [ 51.98, 25.73 ], [ 52.42, 25.48 ], [ 53.13, 25.88 ], [ 52.95, 26.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.64, 26.43 ], [ -18.34, 27.03 ], [ -19.32, 26.86 ], [ -19.58, 26.09 ], [ -18.88, 25.5 ], [ -17.91, 25.66 ], [ -17.64, 26.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.52, 26.82 ], [ -13.73, 27.01 ], [ -14.71, 26.88 ], [ -15.0, 26.12 ], [ -14.63, 25.78 ], [ -14.49, 26.15 ], [ -14.18, 26.42 ], [ -13.52, 26.82 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.87, 25.54 ], [ 36.9, 25.57 ], [ 36.93, 25.59 ], [ 36.94, 25.61 ], [ 36.94, 25.61 ], [ 36.95, 25.62 ], [ 36.65, 25.86 ], [ 36.05, 26.84 ], [ 35.55, 26.38 ], [ 35.85, 25.62 ], [ 36.62, 25.52 ], [ 36.64, 25.52 ], [ 36.71, 25.51 ], [ 36.74, 25.5 ], [ 36.77, 25.5 ], [ 36.79, 25.5 ], [ 36.82, 25.49 ], [ 36.87, 25.54 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.79, 26.6 ], [ 123.01, 26.98 ], [ 122.22, 26.46 ], [ 122.21, 25.57 ], [ 122.98, 25.19 ], [ 123.77, 25.7 ], [ 123.79, 26.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.22, 26.46 ], [ 121.44, 26.83 ], [ 120.65, 26.3 ], [ 120.65, 25.41 ], [ 121.27, 25.12 ], [ 121.66, 25.21 ], [ 122.21, 25.57 ], [ 122.22, 26.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.43, 25.56 ], [ -82.47, 26.31 ], [ -82.95, 26.47 ], [ -83.29, 26.81 ], [ -84.08, 26.56 ], [ -84.16, 25.64 ], [ -83.82, 25.3 ], [ -83.34, 25.14 ], [ -82.43, 25.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 26.44 ], [ -79.68, 26.8 ], [ -80.04, 26.64 ], [ -80.11, 25.95 ], [ -80.32, 25.54 ], [ -80.18, 25.48 ], [ -80.18, 25.48 ], [ -79.66, 25.28 ], [ -78.75, 25.68 ], [ -78.75, 26.44 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.24, 26.03 ], [ -163.69, 26.74 ], [ -164.68, 26.71 ], [ -165.21, 25.99 ], [ -164.75, 25.3 ], [ -163.77, 25.32 ], [ -163.24, 26.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.53, 25.89 ], [ 50.52, 25.9 ], [ 50.52, 25.9 ], [ 50.53, 25.89 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.2, 26.51 ], [ 50.18, 26.68 ], [ 50.15, 26.66 ], [ 50.15, 26.66 ], [ 50.04, 26.58 ], [ 50.03, 26.57 ], [ 50.02, 26.56 ], [ 50.24, 26.34 ], [ 50.11, 25.98 ], [ 50.2, 25.66 ], [ 50.53, 25.25 ], [ 50.69, 25.22 ], [ 50.77, 25.28 ], [ 51.05, 26.04 ], [ 51.34, 26.12 ], [ 51.2, 26.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.29, 26.62 ], [ -97.44, 26.45 ], [ -97.18, 25.7 ], [ -97.71, 25.11 ], [ -97.55, 25.0 ], [ -97.53, 24.99 ], [ -97.37, 24.88 ], [ -96.59, 25.23 ], [ -96.58, 26.13 ], [ -97.29, 26.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.17, 25.2 ], [ 119.17, 25.23 ], [ 119.14, 25.26 ], [ 119.12, 25.22 ], [ 119.17, 25.2 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.76, 26.59 ], [ 119.6, 26.16 ], [ 119.57, 25.56 ], [ 119.12, 25.41 ], [ 119.2, 25.18 ], [ 119.87, 24.88 ], [ 120.65, 25.41 ], [ 120.65, 26.3 ], [ 120.5, 26.37 ], [ 120.49, 26.38 ], [ 120.48, 26.38 ], [ 120.47, 26.39 ], [ 120.15, 26.54 ], [ 120.14, 26.54 ], [ 120.01, 26.6 ], [ 119.96, 26.62 ], [ 119.89, 26.66 ], [ 119.86, 26.66 ], [ 119.81, 26.63 ], [ 119.78, 26.61 ], [ 119.76, 26.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.78, 26.51 ], [ -170.8, 26.61 ], [ -171.29, 25.95 ], [ -170.77, 25.22 ], [ -169.77, 25.14 ], [ -169.26, 25.76 ], [ -169.78, 26.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -166.21, 25.95 ], [ -166.7, 26.61 ], [ -167.72, 26.51 ], [ -168.24, 25.76 ], [ -167.73, 25.14 ], [ -166.73, 25.22 ], [ -166.21, 25.95 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.97, 25.97 ], [ -16.66, 26.58 ], [ -17.64, 26.43 ], [ -17.91, 25.66 ], [ -17.22, 25.06 ], [ -16.25, 25.21 ], [ -15.97, 25.97 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.55, 26.38 ], [ 34.57, 26.5 ], [ 34.24, 26.18 ], [ 34.92, 25.02 ], [ 35.18, 24.99 ], [ 35.85, 25.62 ], [ 35.55, 26.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.02, 25.93 ], [ -95.8, 26.48 ], [ -96.58, 26.13 ], [ -96.59, 25.23 ], [ -95.8, 24.7 ], [ -95.02, 25.05 ], [ -95.02, 25.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.68, 24.96 ], [ 118.67, 24.97 ], [ 118.66, 24.97 ], [ 118.67, 24.95 ], [ 118.68, 24.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.9, 25.11 ], [ 118.86, 25.1 ], [ 118.86, 25.08 ], [ 118.9, 25.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.08, 25.23 ], [ 118.98, 25.22 ], [ 118.94, 25.14 ], [ 119.08, 25.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.5, 24.86 ], [ -86.44, 25.77 ], [ -87.17, 26.4 ], [ -87.96, 26.11 ], [ -88.01, 25.21 ], [ -87.28, 24.58 ], [ -86.5, 24.86 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.09, 25.67 ], [ -112.09, 25.66 ], [ -112.09, 25.65 ], [ -112.09, 25.67 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.07, 25.52 ], [ -112.31, 26.11 ], [ -112.33, 26.12 ], [ -113.09, 25.68 ], [ -113.0, 24.8 ], [ -112.17, 24.37 ], [ -111.95, 24.49 ], [ -111.9, 24.52 ], [ -111.81, 24.57 ], [ -112.17, 24.96 ], [ -112.07, 25.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.63, 25.78 ], [ -15.0, 26.12 ], [ -15.97, 25.97 ], [ -16.25, 25.21 ], [ -15.57, 24.59 ], [ -14.9, 24.69 ], [ -14.84, 25.21 ], [ -14.63, 25.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.06, 25.45 ], [ 36.95, 25.62 ], [ 36.94, 25.61 ], [ 36.94, 25.61 ], [ 36.93, 25.59 ], [ 36.9, 25.57 ], [ 36.87, 25.54 ], [ 36.82, 25.49 ], [ 36.82, 25.49 ], [ 36.84, 25.44 ], [ 36.85, 25.39 ], [ 37.1, 24.73 ], [ 37.23, 24.72 ], [ 37.25, 25.16 ], [ 37.06, 25.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.91, 25.66 ], [ -110.74, 26.12 ], [ -111.18, 25.86 ], [ -111.23, 25.83 ], [ -111.3, 25.79 ], [ -110.69, 24.89 ], [ -110.68, 24.4 ], [ -110.6, 24.35 ], [ -110.38, 24.48 ], [ -110.33, 24.51 ], [ -109.85, 24.78 ], [ -109.91, 25.66 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.09, 25.68 ], [ -113.93, 26.11 ], [ -114.68, 25.66 ], [ -114.59, 24.79 ], [ -113.75, 24.36 ], [ -113.0, 24.8 ], [ -113.09, 25.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.98, 24.79 ], [ 66.69, 24.82 ], [ 66.74, 25.2 ], [ 66.47, 25.6 ], [ 65.64, 25.35 ], [ 65.35, 25.38 ], [ 65.41, 24.79 ], [ 66.25, 24.36 ], [ 66.98, 24.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.88, 25.5 ], [ -19.58, 26.09 ], [ -20.55, 25.92 ], [ -20.82, 25.15 ], [ -20.11, 24.56 ], [ -19.15, 24.73 ], [ -18.88, 25.5 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.5, 25.29 ], [ -108.49, 25.29 ], [ -108.49, 25.29 ], [ -108.5, 25.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.5, 25.29 ], [ -108.77, 25.55 ], [ -109.37, 25.66 ], [ -109.45, 25.93 ], [ -109.91, 25.66 ], [ -109.85, 24.78 ], [ -109.03, 24.33 ], [ -108.27, 24.75 ], [ -108.29, 25.08 ], [ -108.3, 25.1 ], [ -108.3, 25.11 ], [ -108.3, 25.12 ], [ -108.3, 25.15 ], [ -108.3, 25.17 ], [ -108.3, 25.2 ], [ -108.5, 25.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.35, 25.38 ], [ 64.64, 25.21 ], [ 63.75, 25.38 ], [ 63.82, 24.77 ], [ 64.67, 24.35 ], [ 65.41, 24.79 ], [ 65.35, 25.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.07, 24.9 ], [ -108.08, 24.92 ], [ -108.08, 24.91 ], [ -108.08, 24.9 ], [ -108.07, 24.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.48, 24.29 ], [ -108.02, 24.68 ], [ -107.99, 24.99 ], [ -108.3, 25.2 ], [ -108.3, 25.17 ], [ -108.3, 25.15 ], [ -108.3, 25.12 ], [ -108.3, 25.11 ], [ -108.3, 25.1 ], [ -108.29, 25.08 ], [ -108.27, 24.75 ], [ -107.48, 24.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.83, 25.63 ], [ 130.07, 26.05 ], [ 129.25, 25.58 ], [ 129.2, 24.7 ], [ 129.96, 24.28 ], [ 130.77, 24.75 ], [ 130.83, 25.63 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.75, 25.38 ], [ 63.48, 25.2 ], [ 62.49, 25.25 ], [ 62.16, 25.21 ], [ 62.23, 24.73 ], [ 63.08, 24.32 ], [ 63.82, 24.77 ], [ 63.75, 25.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -161.83, 25.32 ], [ -162.25, 26.04 ], [ -163.24, 26.03 ], [ -163.77, 25.32 ], [ -163.34, 24.6 ], [ -162.37, 24.6 ], [ -161.83, 25.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.25, 25.58 ], [ 128.49, 25.99 ], [ 127.68, 25.51 ], [ 127.64, 24.62 ], [ 128.4, 24.22 ], [ 129.2, 24.7 ], [ 129.25, 25.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.75, 25.3 ], [ -165.21, 25.99 ], [ -166.21, 25.95 ], [ -166.73, 25.22 ], [ -166.25, 24.55 ], [ -165.27, 24.58 ], [ -164.75, 25.3 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.68, 25.51 ], [ 126.91, 25.92 ], [ 126.11, 25.42 ], [ 126.08, 24.54 ], [ 126.84, 24.14 ], [ 127.64, 24.62 ], [ 127.68, 25.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.02, 24.64 ], [ 58.89, 25.49 ], [ 58.37, 25.63 ], [ 58.09, 25.56 ], [ 57.75, 25.74 ], [ 57.26, 25.45 ], [ 57.41, 24.59 ], [ 58.29, 24.19 ], [ 59.02, 24.64 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.02, 25.42 ], [ 53.13, 25.88 ], [ 52.42, 25.48 ], [ 52.56, 24.8 ], [ 52.6, 24.6 ], [ 53.08, 24.34 ], [ 53.09, 24.34 ], [ 53.48, 24.13 ], [ 53.76, 24.3 ], [ 53.79, 24.31 ], [ 54.19, 24.56 ], [ 54.02, 25.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.26, 25.45 ], [ 56.37, 25.86 ], [ 56.37, 25.86 ], [ 56.36, 25.85 ], [ 56.38, 24.94 ], [ 56.84, 24.24 ], [ 57.41, 24.59 ], [ 57.26, 25.45 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.49, 25.49 ], [ 54.74, 25.84 ], [ 54.02, 25.42 ], [ 54.19, 24.56 ], [ 54.34, 24.48 ], [ 54.48, 24.42 ], [ 54.49, 24.41 ], [ 54.7, 24.81 ], [ 55.05, 25.0 ], [ 55.49, 25.49 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.11, 25.42 ], [ 125.34, 25.82 ], [ 124.54, 25.32 ], [ 124.52, 24.43 ], [ 125.29, 24.04 ], [ 126.08, 24.54 ], [ 126.11, 25.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.86, 24.76 ], [ 50.77, 25.28 ], [ 50.69, 25.22 ], [ 50.86, 24.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.6, 25.78 ], [ 51.59, 25.78 ], [ 51.48, 25.5 ], [ 51.64, 25.01 ], [ 51.35, 24.62 ], [ 51.3, 24.64 ], [ 51.39, 24.46 ], [ 51.54, 24.4 ], [ 51.55, 24.4 ], [ 51.6, 24.37 ], [ 51.61, 24.36 ], [ 51.75, 24.28 ], [ 51.78, 24.26 ], [ 51.9, 24.2 ], [ 52.6, 24.6 ], [ 52.56, 24.8 ], [ 52.42, 25.48 ], [ 51.98, 25.73 ], [ 51.6, 25.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.73, 25.14 ], [ -168.24, 25.76 ], [ -168.75, 25.67 ], [ -169.26, 25.76 ], [ -169.77, 25.14 ], [ -169.26, 24.39 ], [ -168.75, 24.31 ], [ -168.24, 24.39 ], [ -167.73, 25.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.54, 25.32 ], [ 123.77, 25.7 ], [ 122.98, 25.19 ], [ 122.97, 24.46 ], [ 122.97, 24.43 ], [ 122.97, 24.3 ], [ 123.74, 23.92 ], [ 124.52, 24.43 ], [ 124.54, 25.32 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.13, 24.4 ], [ -78.45, 24.61 ], [ -78.17, 24.91 ], [ -77.85, 24.8 ], [ -77.84, 25.28 ], [ -78.75, 25.68 ], [ -79.66, 25.28 ], [ -79.65, 24.52 ], [ -78.75, 24.14 ], [ -78.13, 24.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.18, 25.48 ], [ -80.32, 25.54 ], [ -80.46, 25.21 ], [ -81.08, 25.11 ], [ -81.49, 25.23 ], [ -81.47, 24.7 ], [ -81.47, 24.68 ], [ -81.47, 24.66 ], [ -81.47, 24.65 ], [ -81.47, 24.47 ], [ -80.55, 24.12 ], [ -79.65, 24.52 ], [ -79.66, 25.28 ], [ -80.18, 25.48 ], [ -80.18, 25.48 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.34, 25.14 ], [ -83.82, 25.3 ], [ -84.16, 25.64 ], [ -84.94, 25.38 ], [ -85.02, 24.46 ], [ -84.67, 24.12 ], [ -84.19, 23.97 ], [ -83.3, 24.4 ], [ -83.34, 25.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.62, 25.52 ], [ 35.85, 25.62 ], [ 35.18, 24.99 ], [ 35.47, 24.24 ], [ 36.43, 24.11 ], [ 37.1, 24.73 ], [ 36.85, 25.39 ], [ 36.84, 25.44 ], [ 36.82, 25.49 ], [ 36.79, 25.5 ], [ 36.77, 25.5 ], [ 36.74, 25.5 ], [ 36.71, 25.51 ], [ 36.64, 25.52 ], [ 36.62, 25.52 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.98, 25.19 ], [ 122.21, 25.57 ], [ 121.66, 25.21 ], [ 121.91, 25.12 ], [ 121.85, 24.48 ], [ 121.61, 24.06 ], [ 122.19, 23.78 ], [ 122.97, 24.3 ], [ 122.97, 24.43 ], [ 122.97, 24.46 ], [ 122.98, 25.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.49, 25.23 ], [ -82.43, 25.56 ], [ -83.34, 25.14 ], [ -83.3, 24.4 ], [ -82.36, 24.06 ], [ -81.47, 24.47 ], [ -81.47, 24.65 ], [ -81.47, 24.66 ], [ -81.47, 24.68 ], [ -81.47, 24.7 ], [ -81.49, 25.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.79, 24.92 ], [ -89.54, 25.52 ], [ -90.33, 25.22 ], [ -90.35, 24.32 ], [ -89.6, 23.73 ], [ -88.83, 24.02 ], [ -88.79, 24.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.24, 23.85 ], [ 90.23, 23.87 ], [ 90.23, 23.88 ], [ 90.23, 23.88 ], [ 90.23, 23.86 ], [ 90.24, 23.85 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.77, 24.17 ], [ -97.73, 23.82 ], [ -97.35, 24.0 ], [ -97.37, 24.88 ], [ -97.53, 24.99 ], [ -97.55, 25.0 ], [ -97.71, 25.11 ], [ -97.73, 24.85 ], [ -97.74, 24.67 ], [ -97.71, 24.65 ], [ -97.77, 24.17 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.27, 25.12 ], [ 120.65, 25.41 ], [ 119.87, 24.88 ], [ 119.85, 24.0 ], [ 120.23, 23.82 ], [ 121.04, 25.03 ], [ 121.27, 25.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.69, 25.22 ], [ 50.53, 25.25 ], [ 50.86, 24.76 ], [ 50.69, 25.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -160.45, 24.58 ], [ -160.86, 25.31 ], [ -161.83, 25.32 ], [ -162.37, 24.6 ], [ -161.96, 23.88 ], [ -161.01, 23.87 ], [ -160.45, 24.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.34, 24.6 ], [ -163.77, 25.32 ], [ -164.75, 25.3 ], [ -165.27, 24.58 ], [ -164.83, 23.87 ], [ -163.87, 23.88 ], [ -163.34, 24.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.58, 24.51 ], [ -157.96, 25.24 ], [ -158.93, 25.27 ], [ -159.5, 24.56 ], [ -159.11, 23.83 ], [ -158.16, 23.8 ], [ -157.58, 24.51 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.8, 24.7 ], [ -96.59, 25.23 ], [ -97.37, 24.88 ], [ -97.35, 24.0 ], [ -96.56, 23.47 ], [ -95.79, 23.82 ], [ -95.8, 24.7 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.3, 24.41 ], [ 118.31, 24.43 ], [ 118.3, 24.46 ], [ 118.3, 24.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.12, 25.22 ], [ 119.08, 25.23 ], [ 118.94, 25.14 ], [ 118.9, 25.11 ], [ 118.86, 25.08 ], [ 118.68, 24.96 ], [ 118.67, 24.95 ], [ 118.59, 24.57 ], [ 118.3, 24.59 ], [ 118.3, 24.48 ], [ 118.3, 24.4 ], [ 118.29, 23.82 ], [ 119.06, 23.47 ], [ 119.85, 24.0 ], [ 119.87, 24.88 ], [ 119.2, 25.18 ], [ 119.17, 25.2 ], [ 119.12, 25.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.77, 25.14 ], [ -170.77, 25.22 ], [ -171.25, 24.55 ], [ -170.74, 23.82 ], [ -169.75, 23.76 ], [ -169.26, 24.39 ], [ -169.77, 25.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -166.25, 24.55 ], [ -166.73, 25.22 ], [ -167.73, 25.14 ], [ -168.24, 24.39 ], [ -167.75, 23.76 ], [ -166.76, 23.82 ], [ -166.25, 24.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.81, 23.68 ], [ -15.9, 23.83 ], [ -15.82, 23.9 ], [ -15.57, 24.59 ], [ -16.25, 25.21 ], [ -17.22, 25.06 ], [ -17.49, 24.29 ], [ -16.81, 23.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.39, 23.83 ], [ 38.33, 23.88 ], [ 38.35, 23.83 ], [ 38.39, 23.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.28, 24.58 ], [ -88.01, 25.21 ], [ -88.79, 24.92 ], [ -88.83, 24.02 ], [ -88.09, 23.4 ], [ -87.32, 23.67 ], [ -87.28, 24.58 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.11, 24.56 ], [ -20.82, 25.15 ], [ -21.79, 24.97 ], [ -22.04, 24.21 ], [ -21.34, 23.63 ], [ -20.37, 23.8 ], [ -20.11, 24.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.18, 24.99 ], [ 34.92, 25.02 ], [ 35.14, 24.52 ], [ 35.43, 24.2 ], [ 35.47, 24.24 ], [ 35.18, 24.99 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.69, 24.04 ], [ 117.68, 24.05 ], [ 117.67, 24.07 ], [ 117.66, 24.06 ], [ 117.67, 24.05 ], [ 117.69, 24.04 ], [ 117.69, 24.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.69, 24.04 ], [ 116.88, 23.55 ], [ 116.94, 23.53 ], [ 116.96, 23.52 ], [ 117.05, 23.48 ], [ 117.13, 23.44 ], [ 117.51, 23.28 ], [ 118.29, 23.82 ], [ 118.3, 24.4 ], [ 118.3, 24.41 ], [ 118.3, 24.46 ], [ 118.3, 24.48 ], [ 118.3, 24.59 ], [ 117.92, 24.47 ], [ 118.06, 24.24 ], [ 117.69, 24.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.85, 23.29 ], [ -85.79, 24.21 ], [ -86.5, 24.86 ], [ -87.28, 24.58 ], [ -87.32, 23.67 ], [ -86.61, 23.03 ], [ -85.85, 23.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.17, 24.37 ], [ -113.0, 24.8 ], [ -113.75, 24.36 ], [ -113.66, 23.49 ], [ -112.83, 23.05 ], [ -112.09, 23.49 ], [ -112.17, 24.37 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.35, 24.62 ], [ 66.98, 24.79 ], [ 66.25, 24.36 ], [ 66.34, 23.49 ], [ 67.17, 23.05 ], [ 67.91, 23.49 ], [ 67.4, 24.07 ], [ 67.38, 24.43 ], [ 67.35, 24.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.6, 24.35 ], [ -110.68, 24.4 ], [ -110.59, 24.25 ], [ -110.6, 24.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.54, 23.69 ], [ -111.05, 24.11 ], [ -111.81, 24.57 ], [ -111.9, 24.52 ], [ -111.95, 24.49 ], [ -112.17, 24.37 ], [ -112.09, 23.49 ], [ -111.27, 23.05 ], [ -110.53, 23.48 ], [ -110.54, 23.69 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.25, 24.36 ], [ 65.41, 24.79 ], [ 64.67, 24.35 ], [ 64.77, 23.48 ], [ 65.6, 23.05 ], [ 66.34, 23.49 ], [ 66.25, 24.36 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.59, 23.1 ], [ -109.64, 23.08 ], [ -109.69, 23.04 ], [ -109.59, 23.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.14, 23.26 ], [ -110.54, 23.69 ], [ -110.53, 23.48 ], [ -110.14, 23.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.03, 24.33 ], [ -109.85, 24.78 ], [ -110.33, 24.51 ], [ -110.38, 24.48 ], [ -110.6, 24.35 ], [ -110.59, 24.25 ], [ -110.01, 24.17 ], [ -109.47, 23.58 ], [ -109.5, 23.14 ], [ -108.97, 23.45 ], [ -109.03, 24.33 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.67, 24.35 ], [ 63.82, 24.77 ], [ 63.08, 24.32 ], [ 63.19, 23.45 ], [ 64.03, 23.03 ], [ 64.77, 23.48 ], [ 64.67, 24.35 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.48, 24.29 ], [ -108.27, 24.75 ], [ -109.03, 24.33 ], [ -108.97, 23.45 ], [ -108.16, 22.98 ], [ -107.41, 23.4 ], [ -107.46, 24.28 ], [ -107.48, 24.29 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.82, 23.9 ], [ -14.9, 24.69 ], [ -15.57, 24.59 ], [ -15.82, 23.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.23, 24.72 ], [ 37.1, 24.73 ], [ 36.43, 24.11 ], [ 36.72, 23.35 ], [ 37.67, 23.22 ], [ 38.35, 23.83 ], [ 38.33, 23.88 ], [ 37.71, 24.26 ], [ 37.52, 24.27 ], [ 37.23, 24.72 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.28, 23.1 ], [ -106.29, 23.1 ], [ -106.29, 23.1 ], [ -106.28, 23.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.29, 23.1 ], [ -106.98, 23.92 ], [ -107.46, 24.28 ], [ -107.41, 23.4 ], [ -106.61, 22.93 ], [ -106.29, 23.1 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.88, 22.96 ], [ 61.61, 23.42 ], [ 61.49, 24.28 ], [ 60.63, 24.69 ], [ 59.89, 24.23 ], [ 60.02, 23.37 ], [ 60.88, 22.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.89, 24.23 ], [ 59.02, 24.64 ], [ 58.29, 24.19 ], [ 58.39, 23.6 ], [ 58.73, 23.52 ], [ 59.09, 23.02 ], [ 59.29, 22.92 ], [ 60.02, 23.37 ], [ 59.89, 24.23 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.4, 24.22 ], [ 127.64, 24.62 ], [ 126.84, 24.14 ], [ 126.81, 23.25 ], [ 127.56, 22.85 ], [ 128.36, 23.33 ], [ 128.4, 24.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -162.37, 24.6 ], [ -163.34, 24.6 ], [ -163.87, 23.88 ], [ -163.45, 23.16 ], [ -162.51, 23.16 ], [ -161.96, 23.88 ], [ -162.37, 24.6 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.08, 24.34 ], [ 52.6, 24.6 ], [ 51.9, 24.2 ], [ 51.94, 24.0 ], [ 52.57, 24.12 ], [ 53.49, 24.1 ], [ 53.48, 24.13 ], [ 53.09, 24.34 ], [ 53.08, 24.34 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.29, 24.19 ], [ 57.41, 24.59 ], [ 56.84, 24.24 ], [ 57.19, 23.93 ], [ 58.39, 23.6 ], [ 58.29, 24.19 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.5, 24.56 ], [ -160.45, 24.58 ], [ -161.01, 23.87 ], [ -160.62, 23.14 ], [ -159.68, 23.12 ], [ -159.11, 23.83 ], [ -159.5, 24.56 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.83, 23.87 ], [ -165.27, 24.58 ], [ -166.25, 24.55 ], [ -166.76, 23.82 ], [ -166.3, 23.13 ], [ -165.35, 23.15 ], [ -164.83, 23.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.48, 24.42 ], [ 54.34, 24.48 ], [ 54.19, 24.56 ], [ 53.79, 24.31 ], [ 53.76, 24.3 ], [ 53.48, 24.13 ], [ 53.49, 24.1 ], [ 53.81, 24.05 ], [ 54.36, 24.23 ], [ 54.49, 24.41 ], [ 54.48, 24.42 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.84, 24.14 ], [ 126.08, 24.54 ], [ 125.29, 24.04 ], [ 125.26, 23.15 ], [ 126.02, 22.76 ], [ 126.81, 23.25 ], [ 126.84, 24.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 24.14 ], [ -79.65, 24.52 ], [ -80.55, 24.12 ], [ -80.53, 23.35 ], [ -79.64, 22.98 ], [ -78.75, 23.37 ], [ -78.75, 24.14 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.95, 24.12 ], [ -77.74, 24.47 ], [ -78.13, 24.4 ], [ -78.75, 24.14 ], [ -78.75, 23.37 ], [ -77.86, 22.98 ], [ -76.97, 23.35 ], [ -76.95, 24.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.78, 24.26 ], [ 51.94, 24.0 ], [ 51.9, 24.2 ], [ 51.78, 24.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.75, 24.28 ], [ 51.61, 24.36 ], [ 51.65, 24.19 ], [ 51.75, 24.28 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.39, 24.46 ], [ 51.6, 24.37 ], [ 51.55, 24.4 ], [ 51.54, 24.4 ], [ 51.39, 24.46 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.26, 23.73 ], [ -156.63, 24.47 ], [ -157.58, 24.51 ], [ -158.16, 23.8 ], [ -157.79, 23.07 ], [ -156.85, 23.03 ], [ -156.26, 23.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.55, 24.12 ], [ -81.47, 24.47 ], [ -82.36, 24.06 ], [ -82.33, 23.31 ], [ -82.03, 23.19 ], [ -81.28, 23.14 ], [ -81.2, 23.05 ], [ -81.15, 23.07 ], [ -81.15, 23.07 ], [ -80.86, 23.2 ], [ -80.86, 23.21 ], [ -80.84, 23.22 ], [ -80.82, 23.22 ], [ -80.53, 23.35 ], [ -80.55, 24.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.17, 23.31 ], [ -75.14, 24.06 ], [ -76.04, 24.47 ], [ -76.95, 24.12 ], [ -76.97, 23.35 ], [ -76.08, 22.95 ], [ -75.17, 23.31 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.29, 24.04 ], [ 124.52, 24.43 ], [ 123.74, 23.92 ], [ 123.72, 23.03 ], [ 124.48, 22.65 ], [ 125.26, 23.15 ], [ 125.29, 24.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.36, 24.06 ], [ -83.3, 24.4 ], [ -84.19, 23.97 ], [ -84.14, 23.23 ], [ -83.33, 22.94 ], [ -82.94, 23.02 ], [ -82.33, 23.31 ], [ -82.36, 24.06 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.75, 23.76 ], [ -168.24, 24.39 ], [ -168.75, 24.31 ], [ -169.26, 24.39 ], [ -169.75, 23.76 ], [ -169.25, 23.02 ], [ -168.75, 22.95 ], [ -168.25, 23.02 ], [ -167.75, 23.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.6, 23.73 ], [ -90.35, 24.32 ], [ -91.13, 24.02 ], [ -91.15, 23.12 ], [ -90.4, 22.53 ], [ -89.63, 22.83 ], [ -89.6, 23.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.39, 23.57 ], [ 90.39, 23.57 ], [ 90.38, 23.57 ], [ 90.39, 23.57 ], [ 90.39, 23.57 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.39, 23.64 ], [ 90.39, 23.64 ], [ 90.39, 23.63 ], [ 90.39, 23.64 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.34, 23.73 ], [ 90.24, 23.85 ], [ 90.23, 23.86 ], [ 90.39, 23.61 ], [ 90.39, 23.61 ], [ 90.39, 23.62 ], [ 90.39, 23.63 ], [ 90.4, 23.7 ], [ 90.4, 23.71 ], [ 90.34, 23.73 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.18, 24.0 ], [ 89.17, 24.0 ], [ 89.17, 24.0 ], [ 89.17, 23.99 ], [ 89.18, 24.0 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.37, 22.93 ], [ 90.37, 22.96 ], [ 90.37, 23.0 ], [ 90.37, 23.01 ], [ 90.38, 23.35 ], [ 90.38, 23.36 ], [ 90.39, 23.38 ], [ 90.39, 23.42 ], [ 89.79, 23.82 ], [ 89.18, 24.0 ], [ 90.13, 23.55 ], [ 90.35, 22.82 ], [ 90.36, 22.82 ], [ 90.37, 22.9 ], [ 90.37, 22.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.53, 23.03 ], [ 113.49, 23.08 ], [ 113.47, 23.09 ], [ 113.45, 23.07 ], [ 113.49, 23.06 ], [ 113.51, 23.01 ], [ 113.53, 23.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.74, 23.92 ], [ 122.97, 24.3 ], [ 122.19, 23.78 ], [ 122.16, 22.9 ], [ 122.92, 22.53 ], [ 123.72, 23.03 ], [ 123.74, 23.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.81, 23.68 ], [ -17.49, 24.29 ], [ -18.45, 24.13 ], [ -18.72, 23.37 ], [ -18.03, 22.77 ], [ -17.08, 22.92 ], [ -16.81, 23.68 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.43, 24.11 ], [ 35.47, 24.24 ], [ 35.43, 24.2 ], [ 35.49, 23.49 ], [ 35.67, 22.95 ], [ 36.06, 22.74 ], [ 36.72, 23.35 ], [ 36.43, 24.11 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.19, 23.78 ], [ 121.61, 24.06 ], [ 121.46, 23.32 ], [ 120.99, 22.58 ], [ 121.37, 22.39 ], [ 122.16, 22.9 ], [ 122.19, 23.78 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.09, 23.4 ], [ -88.83, 24.02 ], [ -89.6, 23.73 ], [ -89.63, 22.83 ], [ -88.9, 22.21 ], [ -88.14, 22.49 ], [ -88.09, 23.4 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.37, 22.9 ], [ 90.38, 22.94 ], [ 90.37, 22.96 ], [ 90.37, 22.93 ], [ 90.37, 22.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.58, 23.08 ], [ 90.65, 23.24 ], [ 90.4, 23.71 ], [ 90.4, 23.7 ], [ 90.39, 23.64 ], [ 90.39, 23.63 ], [ 90.39, 23.63 ], [ 90.39, 23.62 ], [ 90.39, 23.61 ], [ 90.39, 23.61 ], [ 90.39, 23.57 ], [ 90.39, 23.57 ], [ 90.39, 23.42 ], [ 90.39, 23.38 ], [ 90.38, 23.36 ], [ 90.38, 23.35 ], [ 90.37, 23.01 ], [ 90.37, 23.0 ], [ 90.39, 22.81 ], [ 90.43, 22.77 ], [ 90.46, 22.75 ], [ 90.47, 22.74 ], [ 90.49, 22.73 ], [ 90.52, 22.7 ], [ 90.54, 22.69 ], [ 90.55, 22.68 ], [ 90.88, 22.41 ], [ 90.95, 22.34 ], [ 90.99, 22.31 ], [ 91.04, 22.26 ], [ 91.17, 22.24 ], [ 91.47, 22.35 ], [ 91.53, 22.37 ], [ 91.72, 22.44 ], [ 91.35, 22.81 ], [ 90.78, 22.86 ], [ 90.58, 23.08 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.56, 23.47 ], [ -97.35, 24.0 ], [ -97.73, 23.82 ], [ -97.77, 22.84 ], [ -97.85, 22.59 ], [ -97.32, 22.24 ], [ -96.55, 22.59 ], [ -96.56, 23.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.23, 23.82 ], [ 119.85, 24.0 ], [ 119.06, 23.47 ], [ 119.05, 22.59 ], [ 119.82, 22.24 ], [ 120.3, 22.56 ], [ 120.05, 23.05 ], [ 120.23, 23.82 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.45, 23.16 ], [ -163.87, 23.88 ], [ -164.83, 23.87 ], [ -165.35, 23.15 ], [ -164.92, 22.43 ], [ -163.98, 22.44 ], [ -163.45, 23.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -161.01, 23.87 ], [ -161.96, 23.88 ], [ -162.51, 23.16 ], [ -162.11, 22.43 ], [ -161.18, 22.42 ], [ -160.62, 23.14 ], [ -161.01, 23.87 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.47, 22.38 ], [ -16.19, 23.09 ], [ -15.77, 23.76 ], [ -15.9, 23.83 ], [ -16.81, 23.68 ], [ -17.08, 22.92 ], [ -16.47, 22.38 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.52, 23.62 ], [ 38.52, 23.62 ], [ 38.52, 23.62 ], [ 38.52, 23.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.52, 23.62 ], [ 38.52, 23.63 ], [ 38.51, 23.63 ], [ 38.52, 23.62 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.51, 23.63 ], [ 38.39, 23.83 ], [ 38.35, 23.83 ], [ 37.67, 23.22 ], [ 37.95, 22.46 ], [ 38.9, 22.31 ], [ 39.08, 22.48 ], [ 38.86, 22.95 ], [ 38.88, 22.95 ], [ 38.86, 22.95 ], [ 38.51, 23.63 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.16, 23.8 ], [ -159.11, 23.83 ], [ -159.68, 23.12 ], [ -159.3, 22.38 ], [ -158.37, 22.36 ], [ -157.79, 23.07 ], [ -158.16, 23.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -166.3, 23.13 ], [ -166.76, 23.82 ], [ -167.75, 23.76 ], [ -168.25, 23.02 ], [ -167.77, 22.37 ], [ -166.81, 22.4 ], [ -166.3, 23.13 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.06, 23.47 ], [ 118.29, 23.82 ], [ 117.51, 23.28 ], [ 117.5, 22.4 ], [ 118.27, 22.06 ], [ 119.05, 22.59 ], [ 119.06, 23.47 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -154.97, 22.94 ], [ -155.32, 23.69 ], [ -156.26, 23.73 ], [ -156.85, 23.03 ], [ -156.5, 22.29 ], [ -155.56, 22.25 ], [ -154.97, 22.94 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.95, 22.41 ], [ 91.97, 22.4 ], [ 91.98, 22.41 ], [ 91.95, 22.42 ], [ 91.95, 22.41 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.96, 22.82 ], [ 115.97, 22.83 ], [ 115.96, 22.84 ], [ 115.96, 22.82 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.88, 23.55 ], [ 116.5, 22.95 ], [ 115.96, 22.81 ], [ 115.96, 22.18 ], [ 116.73, 21.85 ], [ 117.5, 22.4 ], [ 117.51, 23.28 ], [ 117.13, 23.44 ], [ 117.05, 23.48 ], [ 116.96, 23.52 ], [ 116.94, 23.53 ], [ 116.88, 23.55 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.27, 23.05 ], [ -112.09, 23.49 ], [ -112.83, 23.05 ], [ -112.75, 22.18 ], [ -111.94, 21.74 ], [ -111.2, 22.17 ], [ -111.27, 23.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.17, 23.05 ], [ 66.34, 23.49 ], [ 65.6, 23.05 ], [ 65.69, 22.18 ], [ 66.51, 21.75 ], [ 67.25, 22.18 ], [ 67.17, 23.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.14, 23.26 ], [ -110.53, 23.48 ], [ -111.27, 23.05 ], [ -111.2, 22.17 ], [ -110.39, 21.72 ], [ -109.65, 22.14 ], [ -109.71, 22.99 ], [ -109.97, 22.87 ], [ -110.14, 23.26 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.16, 22.98 ], [ -108.97, 23.45 ], [ -109.5, 23.14 ], [ -109.59, 23.1 ], [ -109.69, 23.04 ], [ -109.71, 22.99 ], [ -109.65, 22.14 ], [ -108.85, 21.68 ], [ -108.1, 22.1 ], [ -108.16, 22.98 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.61, 22.93 ], [ -107.41, 23.4 ], [ -108.16, 22.98 ], [ -108.1, 22.1 ], [ -107.31, 21.63 ], [ -106.56, 22.04 ], [ -106.61, 22.93 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.92, 22.81 ], [ -92.69, 23.39 ], [ -93.46, 23.06 ], [ -93.46, 22.18 ], [ -92.7, 21.61 ], [ -91.93, 21.92 ], [ -91.92, 22.81 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.07, 21.92 ], [ 88.07, 22.02 ], [ 88.01, 21.9 ], [ 88.07, 21.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.07, 22.22 ], [ 88.03, 22.21 ], [ 88.07, 22.19 ], [ 88.07, 22.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.96, 22.84 ], [ 115.47, 22.7 ], [ 115.08, 22.8 ], [ 114.9, 22.6 ], [ 114.43, 22.59 ], [ 114.43, 22.55 ], [ 114.43, 22.54 ], [ 114.43, 21.92 ], [ 115.2, 21.61 ], [ 115.96, 22.18 ], [ 115.96, 22.81 ], [ 115.96, 22.82 ], [ 115.96, 22.84 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.88, 22.96 ], [ 60.02, 23.37 ], [ 59.29, 22.92 ], [ 59.32, 22.75 ], [ 59.79, 22.53 ], [ 59.64, 21.96 ], [ 60.28, 21.65 ], [ 61.0, 22.1 ], [ 60.88, 22.96 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.2, 23.05 ], [ -80.63, 23.1 ], [ -79.63, 22.73 ], [ -79.64, 22.98 ], [ -80.53, 23.35 ], [ -80.82, 23.22 ], [ -80.84, 23.22 ], [ -80.86, 23.21 ], [ -80.86, 23.2 ], [ -81.15, 23.07 ], [ -81.15, 23.07 ], [ -81.2, 23.05 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.08, 22.95 ], [ -76.97, 23.35 ], [ -77.86, 22.98 ], [ -77.87, 22.21 ], [ -77.0, 21.82 ], [ -76.11, 22.19 ], [ -76.08, 22.95 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.67, 23.22 ], [ 36.72, 23.35 ], [ 36.06, 22.74 ], [ 36.43, 22.36 ], [ 36.88, 22.06 ], [ 36.87, 21.9 ], [ 37.28, 21.84 ], [ 37.95, 22.46 ], [ 37.67, 23.22 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.56, 22.04 ], [ -105.77, 21.57 ], [ -105.48, 21.72 ], [ -105.67, 22.02 ], [ -105.85, 22.69 ], [ -106.28, 23.1 ], [ -106.29, 23.1 ], [ -106.29, 23.1 ], [ -106.61, 22.93 ], [ -106.56, 22.04 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.29, 22.92 ], [ 59.09, 23.02 ], [ 59.32, 22.75 ], [ 59.29, 22.92 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.94, 23.02 ], [ -82.03, 23.19 ], [ -82.33, 23.31 ], [ -82.94, 23.02 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.35, 22.83 ], [ -75.17, 23.31 ], [ -76.08, 22.95 ], [ -76.11, 22.19 ], [ -75.23, 21.78 ], [ -74.33, 22.14 ], [ -74.35, 22.83 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.03, 22.8 ], [ -85.5, 22.95 ], [ -85.85, 23.29 ], [ -86.61, 23.03 ], [ -86.67, 22.11 ], [ -86.32, 21.78 ], [ -85.85, 21.63 ], [ -84.97, 22.05 ], [ -85.03, 22.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.86, 22.75 ], [ -83.33, 22.94 ], [ -84.14, 23.23 ], [ -85.03, 22.8 ], [ -84.97, 22.05 ], [ -84.5, 22.05 ], [ -84.4, 22.33 ], [ -83.86, 22.75 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -162.51, 23.16 ], [ -163.45, 23.16 ], [ -163.98, 22.44 ], [ -163.59, 21.71 ], [ -162.66, 21.71 ], [ -162.11, 22.43 ], [ -162.51, 23.16 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.02, 22.76 ], [ 125.26, 23.15 ], [ 124.48, 22.65 ], [ 124.44, 21.77 ], [ 125.19, 21.39 ], [ 125.99, 21.87 ], [ 126.02, 22.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.92, 22.43 ], [ -165.35, 23.15 ], [ -166.3, 23.13 ], [ -166.81, 22.4 ], [ -166.38, 21.69 ], [ -165.45, 21.7 ], [ -164.92, 22.43 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.68, 23.12 ], [ -160.62, 23.14 ], [ -161.18, 22.42 ], [ -160.8, 21.69 ], [ -159.87, 21.67 ], [ -159.66, 21.94 ], [ -159.43, 22.22 ], [ -159.3, 22.38 ], [ -159.68, 23.12 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.4, 22.53 ], [ -91.15, 23.12 ], [ -91.92, 22.81 ], [ -91.93, 21.92 ], [ -91.18, 21.34 ], [ -90.42, 21.64 ], [ -90.4, 22.53 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.28, 21.76 ], [ 89.28, 21.76 ], [ 89.27, 21.76 ], [ 89.28, 21.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.32, 21.79 ], [ 88.29, 21.75 ], [ 88.32, 21.73 ], [ 88.36, 21.8 ], [ 88.32, 21.79 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.1, 21.9 ], [ 88.11, 21.89 ], [ 88.11, 21.9 ], [ 88.1, 21.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.36, 21.8 ], [ 88.33, 21.72 ], [ 88.35, 21.7 ], [ 88.38, 21.68 ], [ 88.39, 21.67 ], [ 88.36, 21.8 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.27, 21.76 ], [ 89.1, 21.62 ], [ 88.42, 21.65 ], [ 88.42, 21.65 ], [ 88.43, 21.65 ], [ 88.44, 21.63 ], [ 88.46, 21.62 ], [ 88.5, 21.59 ], [ 88.54, 21.56 ], [ 88.82, 21.34 ], [ 89.58, 21.64 ], [ 89.58, 21.71 ], [ 89.58, 21.82 ], [ 89.58, 21.84 ], [ 89.59, 21.93 ], [ 89.59, 21.94 ], [ 89.28, 21.76 ], [ 89.27, 21.76 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.1, 21.9 ], [ 88.12, 21.88 ], [ 88.13, 21.87 ], [ 88.17, 21.84 ], [ 88.21, 21.82 ], [ 88.07, 22.22 ], [ 88.07, 22.19 ], [ 88.07, 22.02 ], [ 88.07, 21.92 ], [ 88.1, 21.9 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.43, 22.59 ], [ 114.21, 22.31 ], [ 113.91, 22.4 ], [ 113.53, 23.03 ], [ 113.51, 23.01 ], [ 113.59, 22.24 ], [ 113.22, 22.04 ], [ 112.92, 21.85 ], [ 112.92, 21.64 ], [ 113.68, 21.34 ], [ 114.43, 21.92 ], [ 114.43, 22.54 ], [ 114.43, 22.55 ], [ 114.43, 22.59 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.85, 23.03 ], [ -157.79, 23.07 ], [ -158.37, 22.36 ], [ -158.04, 21.68 ], [ -157.91, 21.62 ], [ -157.08, 21.59 ], [ -156.5, 22.29 ], [ -156.85, 23.03 ] ] ] } },
{ "type": "Feature", "properties": { "Join_Count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.48, 22.65 ], [ 123.72, 23.03 ], [ 122.92, 22.53 ], [ 122.89, 21.65 ], [ 123.65, 21.28 ], [ 124.44, 21.77 ], [ 124.48, 22.65 ] ] ] } },