-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.html
169 lines (137 loc) · 73.2 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_4ecae951ca862330c60877fbb6bfe9ab {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.2/leaflet.draw.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.2/leaflet.draw.css"/>
<style>
#export {
position: absolute;
top: 5px;
right: 10px;
z-index: 999;
background: white;
color: black;
padding: 6px;
border-radius: 4px;
font-family: 'Helvetica Neue';
cursor: pointer;
font-size: 12px;
text-decoration: none;
top: 90px;
}
</style>
</head>
<body>
<div class="folium-map" id="map_4ecae951ca862330c60877fbb6bfe9ab" ></div>
<a href='#' id='export'>Export</a>
</body>
<script>
var map_4ecae951ca862330c60877fbb6bfe9ab = L.map(
"map_4ecae951ca862330c60877fbb6bfe9ab",
{
center: [26.53332, -78.64712],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
L.control.scale().addTo(map_4ecae951ca862330c60877fbb6bfe9ab);
var tile_layer_f3ab0f1136046319a756209564ef13ed = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_4ecae951ca862330c60877fbb6bfe9ab);
var tile_layer_f381d0a44585fe3c8265b642385f3fbd = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tileStyle": "Stamen Watercolor", "tms": false}
).addTo(map_4ecae951ca862330c60877fbb6bfe9ab);
function newMarker(e){
var new_mark = L.marker().setLatLng(e.latlng).addTo(map_4ecae951ca862330c60877fbb6bfe9ab);
new_mark.dragging.enable();
new_mark.on('dblclick', function(e){ map_4ecae951ca862330c60877fbb6bfe9ab.removeLayer(e.target)})
var lat = e.latlng.lat.toFixed(4),
lng = e.latlng.lng.toFixed(4);
new_mark.bindPopup(`<b>Latitude:</b> ${lat}<br /><b>Longitude:</b> ${lng}`);
};
map_4ecae951ca862330c60877fbb6bfe9ab.on('click', newMarker);
var options = {
position: "topleft",
draw: {},
edit: {},
}
// FeatureGroup is to store editable layers.
var drawnItems = new L.featureGroup().addTo(
map_4ecae951ca862330c60877fbb6bfe9ab
);
options.edit.featureGroup = drawnItems;
var draw_control_13f041cc85b542701974cde549c05daa = new L.Control.Draw(
options
).addTo( map_4ecae951ca862330c60877fbb6bfe9ab );
map_4ecae951ca862330c60877fbb6bfe9ab.on(L.Draw.Event.CREATED, function(e) {
var layer = e.layer,
type = e.layerType;
var coords = JSON.stringify(layer.toGeoJSON());
layer.on('click', function() {
alert(coords);
console.log(coords);
});
drawnItems.addLayer(layer);
});
map_4ecae951ca862330c60877fbb6bfe9ab.on('draw:created', function(e) {
drawnItems.addLayer(e.layer);
});
document.getElementById('export').onclick = function(e) {
var data = drawnItems.toGeoJSON();
var convertedData = 'text/json;charset=utf-8,'
+ encodeURIComponent(JSON.stringify(data));
document.getElementById('export').setAttribute(
'href', 'data:' + convertedData
);
document.getElementById('export').setAttribute(
'download', "data.geojson"
);
}
function geo_json_e6aca214efb02a1c9764d5929a089053_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_e6aca214efb02a1c9764d5929a089053 = L.geoJson(null, {
onEachFeature: geo_json_e6aca214efb02a1c9764d5929a089053_onEachFeature,
});
function geo_json_e6aca214efb02a1c9764d5929a089053_add (data) {
geo_json_e6aca214efb02a1c9764d5929a089053
.addData(data)
.addTo(map_4ecae951ca862330c60877fbb6bfe9ab);
}
geo_json_e6aca214efb02a1c9764d5929a089053_add({"bbox": [-79.59434973899994, 20.912398909000046, -72.7461645169999, 26.92841217700004], "features": [{"bbox": [-79.59434973899994, 20.912398909000046, -72.7461645169999, 26.92841217700004], "geometry": {"coordinates": [[[[-72.99957214499995, 21.45170771100004], [-73.03366326799994, 21.43588833800004], [-73.0437249819999, 21.42606686000005], [-73.05304575199995, 21.42490354000006], [-73.05494807399992, 21.435439992000056], [-73.0521743239999, 21.447796365000045], [-73.05930925099995, 21.467041444000074], [-73.07243081799993, 21.486336651000045], [-73.07623436799992, 21.506795732000057], [-73.06618412899991, 21.514148289000047], [-73.04281768099992, 21.521400826000047], [-73.02403723899994, 21.532171942000048], [-73.00656224199992, 21.552084944000057], [-72.9915258449999, 21.56199778900009], [-72.98216712099992, 21.55654531500005], [-72.97002673799994, 21.541885567000065], [-72.95945733199994, 21.533127982000053], [-72.9395715519999, 21.523055712000087], [-72.91974850199995, 21.514797268000052], [-72.91043831699994, 21.504850291000082], [-72.91464979799991, 21.485062200000073], [-72.93342899699991, 21.473451972000078], [-72.97076639099993, 21.469428091000054], [-72.98822983799994, 21.454092202000083], [-72.99957214499995, 21.45170771100004]]], [[[-73.13914954299992, 22.363348700000074], [-73.15640214799993, 22.367661851000037], [-73.16600501199991, 22.374212958000044], [-73.16372636599993, 22.383693752000056], [-73.14537512899994, 22.396877346000053], [-73.15111243399991, 22.403957424000055], [-73.15151933499993, 22.408596096000053], [-73.14537512899994, 22.41860586100006], [-73.1406957669999, 22.43154531500005], [-73.14244544199994, 22.442287502000056], [-73.14224199099993, 22.45136139500005], [-73.13170325399994, 22.459540106000077], [-73.1145727199999, 22.43854401200008], [-73.10606848899994, 22.43349844000005], [-73.09080969999991, 22.431586005000042], [-73.09089107999995, 22.433661200000074], [-73.08511308499993, 22.43817780200004], [-73.07705644399994, 22.44285716400009], [-73.07022050699993, 22.445257880000042], [-73.06314042899993, 22.44472890800006], [-73.04824785099993, 22.44013092700004], [-73.03990637899994, 22.43903229400007], [-73.01520748599995, 22.430487372000073], [-72.96373450399994, 22.397650458000044], [-72.93993079299992, 22.396877346000053], [-72.94481360599991, 22.402492580000057], [-72.95360266799992, 22.41860586100006], [-72.92027747299994, 22.402899481000077], [-72.9036352199999, 22.39907461100006], [-72.89281165299991, 22.40428294500009], [-72.87710527299993, 22.393011786000045], [-72.86168372299994, 22.386867580000057], [-72.84373938699991, 22.38434479400007], [-72.82046464799993, 22.38377513200004], [-72.8137914699999, 22.381008205000057], [-72.8059789699999, 22.374253648000035], [-72.79283606699994, 22.35960521000004], [-72.78331458199995, 22.353216864000046], [-72.76366126199991, 22.353216864000046], [-72.75499426999994, 22.349676825000074], [-72.7461645169999, 22.331284898000035], [-72.75088456899994, 22.31122467700004], [-72.76382402299993, 22.294867255000042], [-72.77944902299993, 22.288234768000052], [-72.79723059799994, 22.29364655200004], [-72.84373938699991, 22.336004950000074], [-72.86400305899991, 22.34992096600007], [-72.87999426999994, 22.358221747000073], [-72.89757239499994, 22.362250067000048], [-72.92292232999995, 22.363348700000074], [-72.93419348899994, 22.362127997000073], [-72.94912675699993, 22.35700104400007], [-72.95702063699991, 22.355902411000045], [-72.9688207669999, 22.35809967700004], [-72.97533118399991, 22.362982489000046], [-72.98045813699991, 22.36786530200004], [-72.9883520169999, 22.37018463700008], [-73.00991777299993, 22.36595286700009], [-73.04954993399991, 22.346625067000048], [-73.07371985599991, 22.342230536000045], [-73.08429928299995, 22.34438711100006], [-73.09097245999993, 22.34906647300005], [-73.09593665299991, 22.35370514500005], [-73.10130774599992, 22.355902411000045], [-73.13914954299992, 22.363348700000074]]], [[[-73.46873625299992, 22.58766229300005], [-73.4752329449999, 22.586170179000078], [-73.51743936699995, 22.598202018000052], [-73.53611469799995, 22.603462445000048], [-73.55641857299992, 22.606473875000063], [-73.55885331399992, 22.61172282700005], [-73.54098037499995, 22.613960339000073], [-73.52392126799992, 22.61619629900008], [-73.5011859949999, 22.610929788000078], [-73.47846199399993, 22.601163606000057], [-73.46873625299992, 22.58766229300005]]], [[[-73.64707081799992, 21.061555161000058], [-73.64517348299995, 21.080532573000085], [-73.65693080199992, 21.093983190000074], [-73.66786106699993, 21.104998324000064], [-73.6678331409999, 21.115223100000037], [-73.63344490599991, 21.099701976000063], [-73.61308669699991, 21.106896778000078], [-73.59586063499995, 21.11264424700005], [-73.58409706499992, 21.12134069800004], [-73.55288739499991, 21.13020428300007], [-73.54579357499995, 21.149742968000055], [-73.52369848299992, 21.168271383000047], [-73.51460433599993, 21.18686665300004], [-73.49262555699994, 21.18208591700005], [-73.47276770699995, 21.192694403000075], [-73.44359290299991, 21.19293854400007], [-73.43333899599992, 21.19326406500005], [-73.42320716099994, 21.19790273600006], [-73.41291256399995, 21.205145575000074], [-73.39818274599992, 21.22483958500004], [-73.38988196499992, 21.233303127000056], [-73.38621985599991, 21.228989976000037], [-73.37979081899994, 21.208197333000044], [-73.36388098899994, 21.190252997000073], [-73.34383419599993, 21.16541318500009], [-73.31794350199993, 21.154067681000072], [-73.2551523969999, 21.135060132000035], [-73.23308077699994, 21.147964784000067], [-73.21102369099992, 21.158073590000072], [-73.1609611959999, 21.16986297300008], [-73.13773470399991, 21.19767059800006], [-73.11738404399995, 21.23670132300009], [-73.06818600199995, 21.309881903000075], [-73.05304928299995, 21.329291083000044], [-73.03376217399995, 21.340399481000077], [-73.01219641799992, 21.33201732000009], [-73.00462805899991, 21.31443919500009], [-73.00572669199994, 21.291449286000045], [-73.02554277299993, 21.18455638200004], [-73.03392986299991, 21.156731490000084], [-73.09759423299994, 21.081400047000045], [-73.12982146599995, 20.993662571000073], [-73.15119381399995, 20.982123114000046], [-73.22556430799995, 20.952463097000077], [-73.26891028599994, 20.958726304000038], [-73.28160559799994, 20.95506419500009], [-73.2910863919999, 20.95058828300006], [-73.31045488199993, 20.937648830000057], [-73.31729081899994, 20.937648830000057], [-73.31729081899994, 20.945054429000038], [-73.31065833199995, 20.950506903000075], [-73.32543493799994, 20.961337770000057], [-73.34692155599993, 20.96382728000009], [-73.3989574819999, 20.935761355000068], [-73.43342037699995, 20.937648830000057], [-73.4926142509999, 20.924457277000045], [-73.53681058799992, 20.94123591400006], [-73.60081946499992, 20.946519273000035], [-73.61522376199991, 20.944566148000035], [-73.63142089299993, 20.936681229000044], [-73.63561799699994, 20.92926324700005], [-73.64144993399992, 20.920330965000062], [-73.64511012499992, 20.912398909000046], [-73.65161212999993, 20.913781123000035], [-73.66335589399995, 20.921082134000073], [-73.67614103599993, 20.93516228200008], [-73.67897042099992, 20.94599493600009], [-73.68143384299992, 20.963241811000046], [-73.68226118299992, 20.98578499100006], [-73.69995646899991, 21.01432784700006], [-73.70320851199995, 21.019765722000045], [-73.6999099219999, 21.026871362000065], [-73.67009365599995, 21.029793419000043], [-73.65333525799991, 21.039886040000056], [-73.64707081799992, 21.061555161000058]]], [[[-74.28376217399995, 22.671820380000042], [-74.28892981699994, 22.643744208000044], [-74.31753495999993, 22.602484442000048], [-74.35472571499992, 22.563299872000073], [-74.38556881399995, 22.541449286000045], [-74.37669837099992, 22.584377346000053], [-74.34764563699991, 22.612941799000055], [-74.31200110599991, 22.638332424000055], [-74.28376217399995, 22.671820380000042]]], [[[-73.99571692599994, 22.657538153000075], [-74.00210527299993, 22.66404857000009], [-74.01622473899994, 22.684881903000075], [-73.98314368399991, 22.67597077000005], [-73.97524980399993, 22.671820380000042], [-73.97191321499992, 22.682928778000075], [-73.96450761599993, 22.691473700000074], [-73.95555579299992, 22.695379950000074], [-73.9473363919999, 22.692287502000056], [-73.94127356699994, 22.696478583000044], [-73.93854732999995, 22.69790273600006], [-73.93431555899991, 22.698472398000035], [-73.93431555899991, 22.705959377000056], [-73.94249426999994, 22.70807526200008], [-73.94587154899995, 22.710191148000035], [-73.9485570949999, 22.713771877000056], [-73.95474199099993, 22.72020091400009], [-73.90314693899995, 22.719671942000048], [-73.87848873599995, 22.72333405200004], [-73.85171464799993, 22.733303127000056], [-73.85065670499995, 22.729437567000048], [-73.85020911399994, 22.726223049000055], [-73.84878495999993, 22.723130601000037], [-73.84487870999993, 22.72020091400009], [-73.8684789699999, 22.681463934000078], [-73.87970943899995, 22.671820380000042], [-73.8801977199999, 22.68187083500004], [-73.88369706899994, 22.689846096000053], [-73.89024817599994, 22.695461330000057], [-73.89952551999994, 22.698472398000035], [-73.89606686099995, 22.684881903000075], [-73.88780676999994, 22.671820380000042], [-73.87694251199991, 22.66547272300005], [-73.86538652299993, 22.671820380000042], [-73.85863196499992, 22.657171942000048], [-73.84947669199994, 22.582464911000045], [-73.84398352799991, 22.56712474200009], [-73.83120683499993, 22.541449286000045], [-73.84837805899991, 22.537583726000037], [-73.85558020699995, 22.520656643000052], [-73.85912024599992, 22.49872467700004], [-73.86538652299993, 22.48004791900007], [-73.87515214799993, 22.468491929000038], [-73.88955644399994, 22.455023505000042], [-73.90477454299992, 22.443752346000053], [-73.91690019399994, 22.43903229400007], [-73.92837480399993, 22.430121161000045], [-73.96157792899993, 22.37018463700008], [-74.01378333199995, 22.33006419500009], [-74.02301998599995, 22.32575104400007], [-74.03359941299993, 22.325018622000073], [-74.09439042899993, 22.301906643000052], [-74.11937415299991, 22.29686107000009], [-74.13467363199993, 22.28388092700004], [-74.15965735599991, 22.246649481000077], [-74.16771399599992, 22.238430080000057], [-74.19416256399995, 22.216864325000074], [-74.20425370999993, 22.21246979400007], [-74.22691809799994, 22.20921458500004], [-74.24474036399994, 22.200384833000044], [-74.27696692599994, 22.171535549000055], [-74.27822831899994, 22.180568752000056], [-74.27696692599994, 22.21588776200008], [-74.27245032499991, 22.225734768000052], [-74.26195227799991, 22.22850169500009], [-74.22252356699994, 22.225531317000048], [-74.21410071499992, 22.22919342700004], [-74.18390865799995, 22.25409577000005], [-74.18309485599991, 22.26048411700009], [-74.19371497299994, 22.26776764500005], [-74.19371497299994, 22.273911851000037], [-74.17414303299995, 22.285549221000053], [-74.16706295499995, 22.288234768000052], [-74.17292232999995, 22.289862372000073], [-74.17747962099992, 22.29169342700004], [-74.18049068899995, 22.295314846000053], [-74.18130449099993, 22.301906643000052], [-74.16120357999995, 22.30923086100006], [-74.13182532499991, 22.325913804000038], [-74.1087133449999, 22.32916901200008], [-74.10334225199995, 22.332424221000053], [-74.09239661399994, 22.346502997000073], [-74.07917232999995, 22.355169989000046], [-74.08023027299993, 22.367743231000077], [-74.0840551419999, 22.38153717700004], [-74.08385169199994, 22.39061107000009], [-74.06541907499991, 22.39752838700008], [-74.03807532499991, 22.400213934000078], [-74.01333574099993, 22.40582916900007], [-74.00255286399994, 22.421698309000078], [-73.99840247299994, 22.445868231000077], [-73.98692786399994, 22.457505601000037], [-73.96934973899994, 22.462225653000075], [-73.9473363919999, 22.465765692000048], [-73.90770423099991, 22.479437567000048], [-73.8801977199999, 22.50291575700004], [-73.87083899599992, 22.535305080000057], [-73.88589433499993, 22.57558828300006], [-73.91344153599994, 22.59446849200009], [-73.98452714799993, 22.59560781500005], [-74.01622473899994, 22.61033763200004], [-74.03123938699991, 22.62368398600006], [-74.02953040299991, 22.627427476000037], [-74.01744544199994, 22.64549388200004], [-74.01085364499994, 22.651271877000056], [-74.00357011599993, 22.655096747000073], [-73.99571692599994, 22.657538153000075]]], [[[-74.28685462099992, 22.733303127000056], [-74.35195878799993, 22.822658596000053], [-74.34821529899995, 22.825873114000046], [-74.34658769399994, 22.82916901200008], [-74.34585527299993, 22.832586981000077], [-74.34455318899995, 22.83624909100007], [-74.33356686099995, 22.836859442000048], [-74.31688391799992, 22.842230536000045], [-74.31041419199994, 22.84316640800006], [-74.29845130099994, 22.839992580000057], [-74.27009029899995, 22.822658596000053], [-74.26008053299995, 22.82021719000005], [-74.2383520169999, 22.818426825000074], [-74.22850501199991, 22.81582265800006], [-74.20055091099994, 22.794663804000038], [-74.19749915299991, 22.78611888200004], [-74.19635982999995, 22.768500067000048], [-74.19371497299994, 22.76117584800005], [-74.19017493399991, 22.760239976000037], [-74.17796790299991, 22.76170482000009], [-74.1738988919999, 22.76117584800005], [-74.17178300699993, 22.758246161000045], [-74.16706295499995, 22.746893622000073], [-74.14753170499995, 22.740668036000045], [-74.11164303299995, 22.738348700000074], [-74.09068762899994, 22.733303127000056], [-74.09813391799992, 22.746893622000073], [-74.07591712099992, 22.741888739000046], [-74.01622473899994, 22.72020091400009], [-74.09068762899994, 22.657538153000075], [-74.09410559799994, 22.665676174000055], [-74.09459387899994, 22.66787344000005], [-74.10496985599991, 22.671820380000042], [-74.10407467399995, 22.688299872000073], [-74.12242591099994, 22.685207424000055], [-74.14842688699991, 22.677801825000074], [-74.22227942599994, 22.69562409100007], [-74.23257402299993, 22.703517971000053], [-74.24893144399994, 22.72020091400009], [-74.25446529899995, 22.70848216400009], [-74.26642818899995, 22.698553778000075], [-74.27830969999991, 22.693182684000078], [-74.28376217399995, 22.695379950000074], [-74.27798417899993, 22.71702708500004], [-74.27814693899995, 22.72842031500005], [-74.28685462099992, 22.733303127000056]]], [[[-73.66616777299993, 23.089544989000046], [-73.75523841099994, 23.07298411700009], [-73.79735266799992, 23.07379791900007], [-73.81696529899995, 23.10382721600007], [-73.74185136599993, 23.096991278000075], [-73.68569902299993, 23.102484442000048], [-73.66616777299993, 23.096991278000075], [-73.66616777299993, 23.089544989000046]]], [[[-75.65355383999992, 23.459458726000037], [-75.61998450399994, 23.457098700000074], [-75.57697506399995, 23.445868231000077], [-75.53978430899991, 23.427679755000042], [-75.52383378799993, 23.404852606000077], [-75.55980383999992, 23.41559479400007], [-75.60187740799995, 23.42340729400007], [-75.63731848899994, 23.435492255000042], [-75.65355383999992, 23.459458726000037]]], [[[-75.79820716099994, 23.53864166900007], [-75.7825414699999, 23.507554429000038], [-75.74494381399995, 23.48273346600007], [-75.66104081899994, 23.45262278900009], [-75.67536373599995, 23.43854401200008], [-75.69823157499991, 23.444281317000048], [-75.74299068899995, 23.466945705000057], [-75.79377193899995, 23.470526434000078], [-75.81273352799991, 23.47955963700008], [-75.80443274599992, 23.500433661000045], [-75.82298743399991, 23.51239655200004], [-75.84190833199995, 23.528509833000044], [-75.85924231699994, 23.537543036000045], [-75.87336178299995, 23.52838776200008], [-75.90807044199994, 23.56240469000005], [-75.94546464799993, 23.588039455000057], [-75.98770097599993, 23.600816148000035], [-76.0371801419999, 23.596625067000048], [-76.0371801419999, 23.603461005000042], [-76.00767981699994, 23.611761786000045], [-76.00304114499994, 23.61399974200009], [-76.00495357999995, 23.62295156500005], [-76.01158606699994, 23.632025458000044], [-76.01056881399995, 23.637600002000056], [-76.02114824099993, 23.64411041900007], [-76.02944902299993, 23.65566640800006], [-76.03148352799991, 23.668524481000077], [-76.02354895699995, 23.67918528900009], [-76.01121985599991, 23.676947333000044], [-76.00259355399993, 23.680161851000037], [-75.99608313699991, 23.68455638200004], [-75.98997962099992, 23.685980536000045], [-75.98224850199995, 23.68268463700008], [-75.97704016799992, 23.677435614000046], [-75.96825110599991, 23.664943752000056], [-75.95718339799993, 23.654852606000077], [-75.94497636599993, 23.648830471000053], [-75.92931067599994, 23.645819403000075], [-75.90807044199994, 23.645005601000037], [-75.9114477199999, 23.640773830000057], [-75.91323808499993, 23.637518622000073], [-75.91588294199994, 23.63467031500005], [-75.92174231699994, 23.631415106000077], [-75.85631262899994, 23.567287502000056], [-75.80894934799994, 23.54197825700004], [-75.79820716099994, 23.53864166900007]]], [[[-74.85912024599992, 22.980292059000078], [-74.84703528599994, 22.97011953300006], [-74.83844967399995, 22.94440338700008], [-74.83340410099993, 22.914129950000074], [-74.83202063699991, 22.874945380000042], [-74.83397376199991, 22.86432526200008], [-74.83995520699995, 22.859930731000077], [-74.85228430899991, 22.86359284100007], [-74.85806230399993, 22.87055084800005], [-74.86534583199995, 22.90452708500004], [-74.86904863199993, 22.902167059000078], [-74.8789770169999, 22.897772528000075], [-74.88548743399991, 22.92381419500009], [-74.91405188699991, 22.970851955000057], [-74.92442786399994, 23.01170482000009], [-74.93390865799995, 23.02570221600007], [-74.96764075399994, 23.06386953300006], [-74.97801673099991, 23.07294342700004], [-74.99054928299995, 23.078558661000045], [-75.10488847599993, 23.099554755000042], [-75.12975012899994, 23.11399974200009], [-75.14256751199991, 23.12368398600006], [-75.21397864499994, 23.16547272300005], [-75.22964433499993, 23.17145416900007], [-75.22671464799993, 23.18121979400007], [-75.22203528599994, 23.19009023600006], [-75.21580969999991, 23.19822825700004], [-75.20791581899994, 23.206244208000044], [-75.20173092399995, 23.206244208000044], [-75.19172115799995, 23.191799221000053], [-75.16356360599991, 23.179022528000075], [-75.15330969999991, 23.165228583000044], [-75.17906653599994, 23.16860586100006], [-75.18740800699993, 23.17145416900007], [-75.18057206899994, 23.159857489000046], [-75.17027747299994, 23.14996979400007], [-75.15831458199995, 23.144191799000055], [-75.14647376199991, 23.14476146000004], [-75.13426673099991, 23.137274481000077], [-75.11522376199991, 23.122381903000075], [-75.10610917899993, 23.11749909100007], [-75.09483801999994, 23.114976304000038], [-75.07868404899995, 23.113674221000053], [-75.06847083199995, 23.11664459800005], [-75.07510331899994, 23.127386786000045], [-75.13219153599994, 23.185980536000045], [-75.13963782499991, 23.202826239000046], [-75.13585364499994, 23.229803778000075], [-75.12743079299992, 23.249253648000035], [-75.11831620999993, 23.26512278900009], [-75.11294511599993, 23.281317450000074], [-75.11375891799992, 23.305080471000053], [-75.12035071499992, 23.33193594000005], [-75.13166256399995, 23.35578034100007], [-75.14647376199991, 23.370754299000055], [-75.15005449099993, 23.366156317000048], [-75.16075598899994, 23.35700104400007], [-75.15904700399994, 23.380601304000038], [-75.19688880099994, 23.41014232000009], [-75.19489498599995, 23.432114976000037], [-75.20836341099994, 23.435248114000046], [-75.22057044199994, 23.43976471600007], [-75.22687740799995, 23.44725169500009], [-75.22223873599995, 23.459458726000037], [-75.24250240799995, 23.474310614000046], [-75.2500707669999, 23.490179755000042], [-75.25633704299992, 23.53514232000009], [-75.27684485599991, 23.582953192000048], [-75.28648841099994, 23.587632554000038], [-75.2930395169999, 23.58543528900009], [-75.30016028599994, 23.580471096000053], [-75.31159420499995, 23.57680898600006], [-75.3047582669999, 23.624945380000042], [-75.31045488199993, 23.63939036700009], [-75.33141028599994, 23.623968817000048], [-75.32201087099992, 23.637193101000037], [-75.31786048099991, 23.641546942000048], [-75.31159420499995, 23.645005601000037], [-75.32412675699993, 23.64866771000004], [-75.33234615799995, 23.641506252000056], [-75.34032141799992, 23.630804755000042], [-75.35260982999995, 23.623968817000048], [-75.35260982999995, 23.631415106000077], [-75.34239661399994, 23.641424872000073], [-75.33458411399994, 23.653143622000073], [-75.33043372299994, 23.667669989000046], [-75.33141028599994, 23.685980536000045], [-75.32534745999993, 23.684515692000048], [-75.32030188699991, 23.68162669500009], [-75.31582597599993, 23.677476304000038], [-75.31159420499995, 23.672349351000037], [-75.25291907499991, 23.582953192000048], [-75.23932857999995, 23.575100002000056], [-75.22130286399994, 23.55605703300006], [-75.20457923099991, 23.533351955000057], [-75.19489498599995, 23.514105536000045], [-75.18272864499994, 23.446437893000052], [-75.17072506399995, 23.42910390800006], [-75.15322831899994, 23.41120026200008], [-75.09406490799995, 23.30532461100006], [-75.09557044199994, 23.294989325000074], [-75.08771725199995, 23.28579336100006], [-75.08511308499993, 23.264064846000053], [-75.08503170499995, 23.219875393000052], [-75.07689368399991, 23.171698309000078], [-75.05996660099993, 23.14166901200008], [-75.03160559799994, 23.12335846600007], [-74.94635982999995, 23.09373607000009], [-74.90965735599991, 23.067328192000048], [-74.84483801999994, 23.000148830000057], [-74.84911048099991, 22.995021877000056], [-74.85460364499994, 22.985256252000056], [-74.85912024599992, 22.980292059000078]]], [[[-74.90005449099993, 23.70648834800005], [-74.84972083199995, 23.72011953300006], [-74.81236731699994, 23.719671942000048], [-74.79963131399995, 23.714544989000046], [-74.77721106699994, 23.699652411000045], [-74.78726152299993, 23.684068101000037], [-74.79369055899991, 23.67133209800005], [-74.80378170499995, 23.66404857000009], [-74.82494055899991, 23.664943752000056], [-74.82494055899991, 23.658677476000037], [-74.81871497299994, 23.65106842700004], [-74.83674068899995, 23.650824286000045], [-74.86074785099993, 23.657904364000046], [-74.87279212099992, 23.672349351000037], [-74.89085852799991, 23.66474030200004], [-74.9238988919999, 23.664455471000053], [-74.94163977799991, 23.658677476000037], [-74.9453832669999, 23.681586005000042], [-74.93862870999993, 23.69432200700004], [-74.92308508999992, 23.701239325000074], [-74.90005449099993, 23.70648834800005]]], [[[-76.32518469999991, 23.97402578300006], [-76.34019934799994, 23.98818594000005], [-76.35863196499992, 24.02366771000004], [-76.37498938699991, 24.046576239000046], [-76.38727779899995, 24.07640208500004], [-76.39761308499993, 24.09251536700009], [-76.40147864499994, 24.10293203300006], [-76.40147864499994, 24.11737702000005], [-76.37677975199995, 24.101385809000078], [-76.31895911399994, 23.980210679000038], [-76.32518469999991, 23.97402578300006]]], [[[-74.46865800699993, 24.02179596600007], [-74.47691809799994, 24.00999583500004], [-74.49128170499995, 23.969183661000045], [-74.49229895699995, 23.96039459800005], [-74.55809485599991, 23.953558661000045], [-74.55809485599991, 23.96039459800005], [-74.5410863919999, 23.98004791900007], [-74.52965247299994, 24.011053778000075], [-74.5254613919999, 24.045721747000073], [-74.53014075399994, 24.07640208500004], [-74.52969316299993, 24.100409247000073], [-74.51870683499993, 24.114935614000046], [-74.5012914699999, 24.123846747000073], [-74.4817602199999, 24.13104889500005], [-74.47622636599993, 24.135199286000045], [-74.4707738919999, 24.140692450000074], [-74.46483313699991, 24.14394765800006], [-74.45815995999993, 24.14130280200004], [-74.44318600199995, 24.11668528900009], [-74.44078528599994, 24.11424388200004], [-74.4387914699999, 24.10382721600007], [-74.42967688699991, 24.089789130000042], [-74.42711341099994, 24.083238023000035], [-74.42772376199991, 24.074164130000042], [-74.43321692599994, 24.054429429000038], [-74.43455969999991, 24.045396226000037], [-74.47549394399994, 23.980210679000038], [-74.47850501199991, 23.99168528900009], [-74.47671464799993, 24.001613674000055], [-74.46865800699993, 24.02179596600007]]], [[[-77.88068600199995, 24.18626536700009], [-77.89366614499994, 24.17763906500005], [-77.94456946499992, 24.154242255000042], [-77.96255449099993, 24.152167059000078], [-77.96906490799995, 24.15957265800006], [-77.97419186099995, 24.17283763200004], [-77.97622636599993, 24.186835028000075], [-77.97337805899991, 24.196193752000056], [-77.96422278599994, 24.19717031500005], [-77.95173092399995, 24.19399648600006], [-77.94058183499993, 24.19358958500004], [-77.93586178299995, 24.203070380000042], [-77.92593339799993, 24.20644765800006], [-77.87100175699993, 24.24091217700004], [-77.86628170499995, 24.242743231000077], [-77.85000566299993, 24.25145091400009], [-77.83967037699995, 24.25458405200004], [-77.79869544199994, 24.25458405200004], [-77.80239824099993, 24.24445221600007], [-77.80842037699995, 24.239447333000044], [-77.82599850199995, 24.23468659100007], [-77.83421790299991, 24.23456452000005], [-77.83853105399993, 24.237941799000055], [-77.84357662699995, 24.23969147300005], [-77.85391191299993, 24.23468659100007], [-77.86082923099991, 24.22524648600006], [-77.87047278599994, 24.19790273600006], [-77.88068600199995, 24.18626536700009]]], [[[-77.92162024599992, 24.26203034100007], [-77.93639075399994, 24.261542059000078], [-77.94261633999992, 24.253119208000044], [-77.94188391799992, 24.24046458500004], [-77.93586178299995, 24.22724030200004], [-77.95026607999995, 24.230536200000074], [-77.97557532499991, 24.227118231000077], [-77.99046790299991, 24.22724030200004], [-78.00133216099994, 24.23143138200004], [-78.01292883999992, 24.23965078300006], [-78.0169164699999, 24.248439846000053], [-78.00475012899994, 24.25458405200004], [-77.97874915299991, 24.25922272300005], [-77.95287024599992, 24.270453192000048], [-77.93219967399995, 24.27570221600007], [-77.92162024599992, 24.26203034100007]]], [[[-76.46300208199995, 24.21360911700009], [-76.48180091099994, 24.213771877000056], [-76.49315344999991, 24.218817450000074], [-76.53526770699995, 24.268377997000073], [-76.54458574099993, 24.283026434000078], [-76.54491126199991, 24.29555898600006], [-76.52953040299991, 24.28742096600007], [-76.52041581899994, 24.27496979400007], [-76.51341712099992, 24.260891018000052], [-76.50389563699991, 24.247748114000046], [-76.49205481699994, 24.239203192000048], [-76.48131262899994, 24.234320380000042], [-76.47166907499991, 24.22760651200008], [-76.46300208199995, 24.21360911700009]]], [[[-77.52497311099995, 23.93305084800005], [-77.51650956899994, 23.918850002000056], [-77.52261308499993, 23.881008205000057], [-77.51748613199993, 23.864162502000056], [-77.53457597599993, 23.828558661000045], [-77.54792232999995, 23.82225169500009], [-77.57274329299992, 23.829413153000075], [-77.56944739499994, 23.816839911000045], [-77.55134029899995, 23.803127346000053], [-77.54548092399995, 23.788397528000075], [-77.5469457669999, 23.77496979400007], [-77.55260169199994, 23.760239976000037], [-77.55980383999992, 23.747707424000055], [-77.56590735599991, 23.740668036000045], [-77.59732011599993, 23.730617580000057], [-77.62120520699995, 23.740057684000078], [-77.64297441299993, 23.75486888200004], [-77.66832434799994, 23.76113515800006], [-77.65111243399991, 23.741929429000038], [-77.65143795499995, 23.73314036700009], [-77.66087805899991, 23.72016022300005], [-77.66832434799994, 23.72016022300005], [-77.68492591099994, 23.741441148000035], [-77.71458899599992, 23.74872467700004], [-77.77818762899994, 23.74681224200009], [-77.74404863199993, 23.76113515800006], [-77.74909420499995, 23.778265692000048], [-77.72769120999993, 23.777736721000053], [-77.67516028599994, 23.76113515800006], [-77.66905676999994, 23.779242255000042], [-77.65892493399991, 23.79205963700008], [-77.64500891799992, 23.80145905200004], [-77.59129798099991, 23.82489655200004], [-77.57616126199991, 23.83584219000005], [-77.57616126199991, 23.84711334800005], [-77.59406490799995, 23.853461005000042], [-77.61164303299995, 23.844142971000053], [-77.62857011599993, 23.83026764500005], [-77.64476477799991, 23.823187567000048], [-77.70311438699991, 23.788397528000075], [-77.69920813699991, 23.785630601000037], [-77.69627844999991, 23.78221263200004], [-77.72020423099991, 23.784816799000055], [-77.74429277299993, 23.81639232000009], [-77.76455644399994, 23.823187567000048], [-77.69884192599994, 23.84511953300006], [-77.66559811099995, 23.86347077000005], [-77.66087805899991, 23.88467031500005], [-77.67520097599993, 23.87051015800006], [-77.69481360599991, 23.86469147300005], [-77.74779212099992, 23.864162502000056], [-77.76207434799994, 23.86155833500004], [-77.77424068899995, 23.856756903000075], [-77.78587805899991, 23.85370514500005], [-77.79869544199994, 23.856675523000035], [-77.80679277299993, 23.86469147300005], [-77.81285559799994, 23.876654364000046], [-77.8274633449999, 23.943915106000077], [-77.82876542899993, 23.969183661000045], [-77.82258053299995, 23.980210679000038], [-77.8372289699999, 23.984808661000045], [-77.83775794199994, 23.995917059000078], [-77.83348548099991, 24.009588934000078], [-77.83348548099991, 24.02179596600007], [-77.84483801999994, 24.03339264500005], [-77.85863196499992, 24.040961005000042], [-77.8665258449999, 24.04755280200004], [-77.86009680899991, 24.055975653000075], [-77.86009680899991, 24.06273021000004], [-77.87962805899991, 24.073960679000038], [-77.94204667899993, 24.096869208000044], [-77.93610592399995, 24.10447825700004], [-77.92906653599994, 24.11123281500005], [-77.91470292899993, 24.10252513200004], [-77.90908769399994, 24.105292059000078], [-77.9082738919999, 24.112616278000075], [-77.90855872299994, 24.11737702000005], [-77.90794837099992, 24.126776434000078], [-77.91079667899993, 24.131333726000037], [-77.91100012899994, 24.13580963700008], [-77.90233313699991, 24.14472077000005], [-77.89216061099995, 24.149644273000035], [-77.86510169199994, 24.157945054000038], [-77.85391191299993, 24.165838934000078], [-77.84992428299995, 24.174302476000037], [-77.84341386599993, 24.198879299000055], [-77.83967037699995, 24.206732489000046], [-77.80540930899991, 24.208929755000042], [-77.79246985599991, 24.21360911700009], [-77.78237870999993, 24.221584377000056], [-77.77887936099995, 24.227850653000075], [-77.77672278599994, 24.235581773000035], [-77.77074133999992, 24.247748114000046], [-77.75572669199994, 24.25926341400009], [-77.71442623599995, 24.275091864000046], [-77.70311438699991, 24.288723049000055], [-77.67516028599994, 24.30296458500004], [-77.66584225199995, 24.289496161000045], [-77.65851803299995, 24.273504950000074], [-77.65021725199995, 24.260158596000053], [-77.63792883999992, 24.25458405200004], [-77.63121497299994, 24.24909088700008], [-77.64073645699995, 24.23729075700004], [-77.7024633449999, 24.190252997000073], [-77.72695878799993, 24.177801825000074], [-77.75772050699993, 24.17259349200009], [-77.75772050699993, 24.165838934000078], [-77.73997962099992, 24.164496161000045], [-77.73253333199995, 24.157049872000073], [-77.73692786399994, 24.14862702000005], [-77.75462805899991, 24.14472077000005], [-77.75853430899991, 24.140773830000057], [-77.7481176419999, 24.131781317000048], [-77.72354081899994, 24.11737702000005], [-77.70767167899993, 24.12372467700004], [-77.70225989499994, 24.11273834800005], [-77.70482337099992, 24.094671942000048], [-77.72126217399995, 24.066229559000078], [-77.72459876199991, 24.053290106000077], [-77.72984778599994, 24.042629299000055], [-77.74404863199993, 24.03546784100007], [-77.72545325399994, 24.03066640800006], [-77.70958411399994, 24.04368724200009], [-77.67853756399995, 24.10175202000005], [-77.65770423099991, 24.123480536000045], [-77.64785722599993, 24.137884833000044], [-77.6438695949999, 24.157538153000075], [-77.64273027299993, 24.182806708000044], [-77.63914954299992, 24.20648834800005], [-77.62734941299993, 24.221096096000053], [-77.60753333199995, 24.21824778900009], [-77.59260006399995, 24.19822825700004], [-77.58047441299993, 24.173163153000075], [-77.56932532499991, 24.15525950700004], [-77.55663001199991, 24.141058661000045], [-77.54946855399993, 24.125921942000048], [-77.5462133449999, 24.108303127000056], [-77.54430091099994, 24.07526276200008], [-77.53917395699995, 24.05414459800005], [-77.53799394399994, 24.045396226000037], [-77.53917395699995, 24.03392161700009], [-77.54430091099994, 24.01471588700008], [-77.54548092399995, 24.004380601000037], [-77.54222571499992, 23.998846747000073], [-77.52818762899994, 23.97988515800006], [-77.52497311099995, 23.970363674000055], [-77.52818762899994, 23.95856354400007], [-77.5352270169999, 23.95058828300006], [-77.54222571499992, 23.94562409100007], [-77.54548092399995, 23.942694403000075], [-77.55577551999994, 23.938299872000073], [-77.57754472599993, 23.93781159100007], [-77.59707597599993, 23.93036530200004], [-77.60069739499994, 23.905096747000073], [-77.5657445949999, 23.92796458500004], [-77.54503333199995, 23.93659088700008], [-77.52497311099995, 23.93305084800005]]], [[[-77.76768958199995, 24.326605536000045], [-77.78685462099992, 24.314601955000057], [-77.79979407499991, 24.317287502000056], [-77.80443274599992, 24.32721588700008], [-77.79869544199994, 24.337103583000044], [-77.7766820949999, 24.34715403900009], [-77.75804602799991, 24.35936107000009], [-77.73924719999991, 24.367132880000042], [-77.71922766799992, 24.37173086100006], [-77.70311438699991, 24.37059153900009], [-77.69615637899994, 24.36709219000005], [-77.68809973899994, 24.36078522300005], [-77.68244381399995, 24.352769273000035], [-77.68260657499991, 24.34393952000005], [-77.69033769399994, 24.338446356000077], [-77.70059160099993, 24.341498114000046], [-77.71125240799995, 24.347479559000078], [-77.71983801999994, 24.350775458000044], [-77.73753821499992, 24.349676825000074], [-77.74803626199991, 24.34593333500004], [-77.76768958199995, 24.326605536000045]]], [[[-75.31468665299991, 24.217352606000077], [-75.30699622299994, 24.20254140800006], [-75.29043535099993, 24.14472077000005], [-75.33580481699994, 24.15851471600007], [-75.35643469999991, 24.16014232000009], [-75.37987219999991, 24.15839264500005], [-75.4251195949999, 24.14996979400007], [-75.44090735599991, 24.14203522300005], [-75.45840410099993, 24.12791575700004], [-75.48314368399991, 24.12571849200009], [-75.50991777299993, 24.14207591400009], [-75.52131100199995, 24.162583726000037], [-75.49962317599994, 24.17259349200009], [-75.48493404899995, 24.176214911000045], [-75.46361243399991, 24.185614325000074], [-75.44391842399995, 24.19871653900009], [-75.43390865799995, 24.21360911700009], [-75.41466223899994, 24.21312083500004], [-75.40575110599991, 24.240301825000074], [-75.41006425699993, 24.27289459800005], [-75.43073482999995, 24.288723049000055], [-75.45995032499991, 24.294582424000055], [-75.48058020699995, 24.309393622000073], [-75.53400631399995, 24.389227606000077], [-75.54190019399994, 24.41746653900009], [-75.56110592399995, 24.443426825000074], [-75.56550045499995, 24.45693594000005], [-75.57152258999992, 24.488755601000037], [-75.58849036399994, 24.512640692000048], [-75.61436926999994, 24.526597398000035], [-75.64736894399994, 24.528957424000055], [-75.64346269399994, 24.539455471000053], [-75.6426488919999, 24.55149974200009], [-75.64415442599994, 24.564154364000046], [-75.64736894399994, 24.576117255000042], [-75.65274003799993, 24.588364976000037], [-75.65782630099994, 24.592922268000052], [-75.66470292899993, 24.59601471600007], [-75.70885169199994, 24.631333726000037], [-75.74107825399994, 24.646144924000055], [-75.74982662699995, 24.65180084800005], [-75.75658118399991, 24.660305080000057], [-75.75755774599992, 24.667914130000042], [-75.75300045499995, 24.67601146000004], [-75.73216712099992, 24.69863515800006], [-75.72386633999992, 24.70184967700004], [-75.70885169199994, 24.70018138200004], [-75.70221920499995, 24.695746161000045], [-75.67536373599995, 24.672308661000045], [-75.64932206899994, 24.66307200700004], [-75.63731848899994, 24.65696849200009], [-75.62633216099994, 24.645005601000037], [-75.61856035099993, 24.581244208000044], [-75.6126195949999, 24.562445380000042], [-75.6028539699999, 24.551906643000052], [-75.58682206899994, 24.53851959800005], [-75.57201087099992, 24.522691148000035], [-75.55996660099993, 24.491441148000035], [-75.53221594999991, 24.44489166900007], [-75.47606360599991, 24.37059153900009], [-75.45811926999994, 24.35732656500005], [-75.41901607999995, 24.337836005000042], [-75.40038001199991, 24.323472398000035], [-75.37559973899994, 24.275946356000077], [-75.36961829299992, 24.26825592700004], [-75.35850989499994, 24.261419989000046], [-75.31468665299991, 24.217352606000077]]], [[[-77.47996985599991, 24.991359768000052], [-77.49510657499991, 24.999335028000075], [-77.51447506399995, 25.001166083000044], [-77.53294837099992, 25.00071849200009], [-77.54548092399995, 25.001898505000042], [-77.56187903599994, 25.018866278000075], [-77.55101477799991, 25.038031317000048], [-77.52717037699995, 25.054388739000046], [-77.50450598899994, 25.063299872000073], [-77.48985755099994, 25.065619208000044], [-77.45604407499991, 25.076971747000073], [-77.44082597599993, 25.078517971000053], [-77.39806067599994, 25.076971747000073], [-77.35562089799993, 25.084051825000074], [-77.33999589799993, 25.083807684000078], [-77.32607988199993, 25.079331773000035], [-77.3020727199999, 25.066107489000046], [-77.26382402299993, 25.05809153900009], [-77.2747289699999, 25.046087958000044], [-77.37950598899994, 25.00153229400007], [-77.40367591099994, 25.00214264500005], [-77.4356176419999, 25.014878648000035], [-77.44139563699991, 25.00653717700004], [-77.45287024599992, 24.994614976000037], [-77.46678626199991, 24.98700592700004], [-77.47996985599991, 24.991359768000052]]], [[[-78.3535863919999, 24.65924713700008], [-78.34284420499995, 24.665350653000075], [-78.33507239499994, 24.67283763200004], [-78.3333227199999, 24.682114976000037], [-78.34056555899991, 24.693426825000074], [-78.3274633449999, 24.710638739000046], [-78.31143144399994, 24.710109768000052], [-78.29792232999995, 24.69684479400007], [-78.29214433499993, 24.67601146000004], [-78.29332434799994, 24.65884023600006], [-78.29702714799993, 24.643784898000035], [-78.30345618399991, 24.63031647300005], [-78.31261145699995, 24.617661851000037], [-78.3301488919999, 24.60643138200004], [-78.33311926999994, 24.603989976000037], [-78.33112545499995, 24.594142971000053], [-78.32632402299993, 24.58539459800005], [-78.31899980399993, 24.581732489000046], [-78.29206295499995, 24.597357489000046], [-78.27725175699993, 24.601263739000046], [-78.26911373599995, 24.609198309000078], [-78.27163652299993, 24.631333726000037], [-78.25218665299991, 24.622788804000038], [-78.2520238919999, 24.604803778000075], [-78.25723222599993, 24.583807684000078], [-78.25426184799994, 24.566148179000038], [-78.23770097599993, 24.55687083500004], [-78.22826087099992, 24.569484768000052], [-78.22594153599994, 24.591538804000038], [-78.23070227799991, 24.61082591400009], [-78.22109941299993, 24.60691966400009], [-78.21068274599992, 24.601263739000046], [-78.20173092399995, 24.598781643000052], [-78.19652258999992, 24.603989976000037], [-78.19713294199994, 24.618353583000044], [-78.20449785099993, 24.62832265800006], [-78.21458899599992, 24.63629791900007], [-78.22325598899994, 24.645005601000037], [-78.22451738199993, 24.650946356000077], [-78.22223873599995, 24.666083075000074], [-78.22325598899994, 24.672308661000045], [-78.22935950399994, 24.679754950000074], [-78.24498450399994, 24.69285716400009], [-78.25112870999993, 24.70018138200004], [-78.25511633999992, 24.714178778000075], [-78.2578832669999, 24.72992584800005], [-78.26402747299994, 24.73932526200008], [-78.27847245999993, 24.73436107000009], [-78.26789303299995, 24.72606028900009], [-78.26414954299992, 24.71051666900007], [-78.26480058499993, 24.672308661000045], [-78.27424068899995, 24.682928778000075], [-78.28062903599994, 24.69920482000009], [-78.28844153599994, 24.714178778000075], [-78.30235755099994, 24.72068919500009], [-78.30406653599994, 24.728216864000046], [-78.30113684799994, 24.745347398000035], [-78.29214433499993, 24.775336005000042], [-78.27684485599991, 24.789984442000048], [-78.25495357999995, 24.806463934000078], [-78.23961341099994, 24.82636139500005], [-78.24372311099995, 24.85101959800005], [-78.23424231699994, 24.857123114000046], [-78.20811926999994, 24.861802476000037], [-78.20274817599994, 24.86782461100006], [-78.19969641799992, 24.88043854400007], [-78.18602454299992, 24.904771226000037], [-78.1829320949999, 24.91868724200009], [-78.17393958199995, 24.919623114000046], [-78.17747962099992, 24.927435614000046], [-78.18553626199991, 24.937892971000053], [-78.18968665299991, 24.94668203300006], [-78.18761145699995, 24.95457591400009], [-78.18224036399994, 24.968491929000038], [-78.17454993399991, 24.981675523000035], [-78.16551673099991, 24.987616278000075], [-78.15770423099991, 25.00018952000005], [-78.15990149599992, 25.02830638200004], [-78.1692602199999, 25.07322825700004], [-78.18004309799994, 25.10492584800005], [-78.20091712099992, 25.146429755000042], [-78.21434485599991, 25.18463776200008], [-78.20274817599994, 25.206732489000046], [-78.18590247299994, 25.205877997000073], [-78.14956620999993, 25.19953034100007], [-78.13442949099993, 25.19367096600007], [-78.12218176999994, 25.18317291900007], [-78.11534583199995, 25.172023830000057], [-78.10704505099994, 25.16307200700004], [-78.09044348899994, 25.159491278000075], [-78.07518469999991, 25.165350653000075], [-78.06045488199993, 25.176336981000077], [-78.04515540299991, 25.18309153900009], [-78.02798417899993, 25.176255601000037], [-78.01524817599994, 25.167792059000078], [-78.00121008999992, 25.160956122000073], [-77.98766028599994, 25.15224844000005], [-77.97687740799995, 25.138413804000038], [-77.99176998599995, 25.122788804000038], [-77.99429277299993, 25.105169989000046], [-77.9863988919999, 25.088771877000056], [-77.96996008999992, 25.076971747000073], [-77.98253333199995, 25.037502346000053], [-77.98656165299991, 25.012884833000044], [-77.98058020699995, 25.001898505000042], [-77.96226966099994, 24.999335028000075], [-77.94725501199991, 24.991156317000048], [-77.93419348899994, 24.976223049000055], [-77.87336178299995, 24.83856842700004], [-77.82917232999995, 24.778225002000056], [-77.8125707669999, 24.76190827000005], [-77.79556230399993, 24.754828192000048], [-77.78351803299995, 24.74823639500005], [-77.74649003799993, 24.714504299000055], [-77.73721269399994, 24.70018138200004], [-77.73615475199995, 24.682196356000077], [-77.73778235599991, 24.65770091400009], [-77.74181067599994, 24.634711005000042], [-77.74779212099992, 24.62107982000009], [-77.75357011599993, 24.602036851000037], [-77.74547278599994, 24.57758209800005], [-77.72354081899994, 24.535101630000042], [-77.71873938699991, 24.499823309000078], [-77.72789466099994, 24.47418854400007], [-77.75108801999994, 24.45848216400009], [-77.78872636599993, 24.453192450000074], [-77.80410722599993, 24.44879791900007], [-77.81456458199995, 24.438706773000035], [-77.82331295499995, 24.42731354400007], [-77.83348548099991, 24.419094143000052], [-77.86384029899995, 24.41543203300006], [-77.87169348899994, 24.406805731000077], [-77.86009680899991, 24.384914455000057], [-77.87205969999991, 24.37376536700009], [-77.90855872299994, 24.350775458000044], [-77.92662512899994, 24.345770575000074], [-77.96141516799992, 24.345526434000078], [-77.97337805899991, 24.34052155200004], [-78.01276607999995, 24.314154364000046], [-78.01781165299991, 24.30609772300005], [-78.01577714799993, 24.297349351000037], [-78.01244055899991, 24.28925202000005], [-78.01170813699991, 24.28188711100006], [-78.01781165299991, 24.275051174000055], [-78.02745520699995, 24.27285390800006], [-78.03697669199994, 24.275946356000077], [-78.04552161399994, 24.28196849200009], [-78.05190995999993, 24.288723049000055], [-78.06330318899995, 24.316229559000078], [-78.06969153599994, 24.350409247000073], [-78.0801488919999, 24.379461981000077], [-78.10342363199993, 24.391750393000052], [-78.13414466099994, 24.403957424000055], [-78.14085852799991, 24.43349844000005], [-78.13442949099993, 24.501613674000055], [-78.15245520699995, 24.488755601000037], [-78.16478430899991, 24.475409247000073], [-78.18004309799994, 24.464911200000074], [-78.20645097599993, 24.460638739000046], [-78.22642981699994, 24.46548086100006], [-78.3516332669999, 24.530462958000044], [-78.41148841099994, 24.58104075700004], [-78.43053137899994, 24.60179271000004], [-78.44298255099994, 24.62449778900009], [-78.42959550699993, 24.627508856000077], [-78.40884355399993, 24.63617584800005], [-78.38980058499993, 24.64671458500004], [-78.38149980399993, 24.655503648000035], [-78.37840735599991, 24.66941966400009], [-78.37108313699991, 24.66815827000005], [-78.36180579299992, 24.661444403000075], [-78.3535863919999, 24.65924713700008]]], [[[-76.16128495999993, 25.165716864000046], [-76.13125566299993, 25.147772528000075], [-76.11827551999994, 25.133937893000052], [-76.11290442599994, 25.114894924000055], [-76.12132727799991, 25.030096747000073], [-76.12559973899994, 25.014064846000053], [-76.12657630099994, 25.00531647300005], [-76.13060462099992, 24.99485911700009], [-76.13975989499994, 24.98847077000005], [-76.14928137899994, 24.984523830000057], [-76.15444902299993, 24.981390692000048], [-76.15794837099992, 24.962144273000035], [-76.15355383999992, 24.94432200700004], [-76.14085852799991, 24.91868724200009], [-76.13695227799991, 24.902167059000078], [-76.14085852799991, 24.854437567000048], [-76.14614824099993, 24.83421458500004], [-76.16966712099992, 24.79979075700004], [-76.17495683499993, 24.78587474200009], [-76.17747962099992, 24.71580638200004], [-76.17398027299993, 24.67731354400007], [-76.16128495999993, 24.645005601000037], [-76.19448808499993, 24.65839264500005], [-76.21178137899994, 24.690252997000073], [-76.22264563699991, 24.726955471000053], [-76.23643958199995, 24.754828192000048], [-76.25300045499995, 24.765773830000057], [-76.29670162699995, 24.782049872000073], [-76.31525631399995, 24.792669989000046], [-76.33633378799993, 24.814927476000037], [-76.33372962099992, 24.824164130000042], [-76.31745357999995, 24.82526276200008], [-76.21934973899994, 24.81004466400009], [-76.21275794199994, 24.81273021000004], [-76.20811926999994, 24.819159247000073], [-76.20396887899994, 24.82689036700009], [-76.19884192599994, 24.833685614000046], [-76.18244381399995, 24.848781643000052], [-76.17764238199993, 24.85765208500004], [-76.17495683499993, 24.871527411000045], [-76.17577063699991, 24.89451732000009], [-76.18394934799994, 24.88930898600006], [-76.19542395699995, 24.87327708500004], [-76.20596269399994, 24.864081122000073], [-76.21202551999994, 24.875392971000053], [-76.21092688699991, 24.90102773600006], [-76.20225989499994, 24.94668203300006], [-76.1966039699999, 24.963446356000077], [-76.19383704299992, 24.96743398600006], [-76.18797766799992, 24.973944403000075], [-76.15925045499995, 24.998195705000057], [-76.15444902299993, 25.00531647300005], [-76.14671790299991, 25.062445380000042], [-76.14704342399995, 25.083807684000078], [-76.16494706899994, 25.129828192000048], [-76.19635982999995, 25.15428294500009], [-76.23228919199994, 25.17096588700008], [-76.2637426419999, 25.19367096600007], [-76.34626217399995, 25.303534247000073], [-76.37157141799992, 25.32249583500004], [-76.40953528599994, 25.335191148000035], [-76.48961341099994, 25.351304429000038], [-76.53083248599995, 25.370428778000075], [-76.59121660099993, 25.42255280200004], [-76.63052324099993, 25.433254299000055], [-76.65233313699991, 25.435370184000078], [-76.69367428299995, 25.44476959800005], [-76.71275794199994, 25.446926174000055], [-76.73428300699993, 25.441839911000045], [-76.76939856699994, 25.42405833500004], [-76.7844945949999, 25.42641836100006], [-76.75951087099992, 25.450018622000073], [-76.74551347599993, 25.48924388200004], [-76.72984778599994, 25.563625393000052], [-76.73668372299994, 25.563625393000052], [-76.70230058499993, 25.56395091400009], [-76.68675696499992, 25.56207916900007], [-76.67520097599993, 25.556789455000057], [-76.68614661399994, 25.54132721600007], [-76.69098873599995, 25.525946356000077], [-76.69131425699993, 25.50885651200008], [-76.68887285099993, 25.48786041900007], [-76.6731664699999, 25.506659247000073], [-76.66197669199994, 25.497259833000044], [-76.65298417899993, 25.47797272300005], [-76.64391028599994, 25.467352606000077], [-76.62458248599995, 25.46246979400007], [-76.49762936099995, 25.373480536000045], [-76.46092688699991, 25.35455963700008], [-76.41454016799992, 25.34446849200009], [-76.36827551999994, 25.342718817000048], [-76.3516332669999, 25.33860911700009], [-76.33576412699995, 25.327093817000048], [-76.28416907499991, 25.26190827000005], [-76.22370357999995, 25.20807526200008], [-76.16128495999993, 25.165716864000046]]], [[[-77.81920325399994, 25.707586981000077], [-77.83145097599993, 25.708685614000046], [-77.84406490799995, 25.72207265800006], [-77.86009680899991, 25.748521226000037], [-77.88048255099994, 25.76898834800005], [-77.88731848899994, 25.78143952000005], [-77.88068600199995, 25.789536851000037], [-77.86803137899994, 25.78742096600007], [-77.85826575399994, 25.777289130000042], [-77.82087154899995, 25.716620184000078], [-77.81920325399994, 25.707586981000077]]], [[[-77.53799394399994, 26.306586005000042], [-77.5423070949999, 26.298976955000057], [-77.57274329299992, 26.268703518000052], [-77.56704667899993, 26.29100169500009], [-77.57217363199993, 26.30487702000005], [-77.57933508999992, 26.318019924000055], [-77.57957923099991, 26.337591864000046], [-77.5703832669999, 26.33270905200004], [-77.54356848899994, 26.31248607000009], [-77.53799394399994, 26.306586005000042]]], [[[-78.59007727799991, 26.53620026200008], [-78.60761892799991, 26.525734450000073], [-78.62896577499993, 26.51610211700006], [-78.64644049499992, 26.504853429000036], [-78.65577003499993, 26.497788470000046], [-78.67671736599993, 26.496131503000072], [-78.68613184999992, 26.49191095300006], [-78.72696836599994, 26.49544569200009], [-78.76683934699992, 26.508104203000073], [-78.79108864499995, 26.529699767000068], [-78.83455712699993, 26.55365117100007], [-78.93959961399992, 26.65078778700007], [-78.98729407499991, 26.68622467700004], [-78.99787350199995, 26.701320705000057], [-78.98713131399995, 26.70148346600007], [-78.97838294199994, 26.69940827000005], [-78.97093665299991, 26.69489166900007], [-78.96434485599991, 26.68768952000005], [-78.83580481699994, 26.614569403000075], [-78.80606035099993, 26.577826239000046], [-78.7862224559999, 26.581143507000036], [-78.77037512399994, 26.58332478400007], [-78.73815509299993, 26.57080854600008], [-78.7142887789999, 26.570519948000083], [-78.69172287099991, 26.579970039000045], [-78.67125234799994, 26.59291820100009], [-78.65751282199994, 26.598588549000056], [-78.64578727799994, 26.60509679200004], [-78.63797875099993, 26.609730986000045], [-78.63425147899994, 26.617819430000054], [-78.62161113499991, 26.62701354400008], [-78.61901136299991, 26.63951757600006], [-78.6044346509999, 26.65053474000007], [-78.59219252499992, 26.673048306000055], [-78.5736332699999, 26.68415929300005], [-78.5759422349999, 26.694769508000036], [-78.60000566299993, 26.708197333000044], [-78.64159094999991, 26.714992580000057], [-78.63467363199993, 26.72797272300005], [-78.60741126199991, 26.755926825000074], [-78.60155188699991, 26.76825592700004], [-78.5938207669999, 26.81053294500009], [-78.57477779899995, 26.79828522300005], [-78.55719967399995, 26.778550523000035], [-78.5442602199999, 26.757025458000044], [-78.53917395699995, 26.739203192000048], [-78.5202572959999, 26.728995355000052], [-78.43781648399994, 26.69982110500007], [-78.41705909299992, 26.704749029000084], [-78.37096106699994, 26.694525458000044], [-78.31998377999992, 26.68652744500008], [-78.28708191999993, 26.68549205900007], [-78.27361518799995, 26.703582975000074], [-78.25292968999992, 26.712942463000047], [-78.22168484799994, 26.700293688000045], [-78.20264129899994, 26.697158680000086], [-78.16705098299991, 26.710400108000044], [-78.11894820799995, 26.704328287000067], [-78.0872289699999, 26.71312083500004], [-78.05540930899991, 26.72601959800005], [-78.03514563699991, 26.728583075000074], [-77.97166907499991, 26.72955963700008], [-77.95628821499992, 26.73541901200008], [-77.94684811099995, 26.746568101000037], [-77.94005286399994, 26.759466864000046], [-77.93114173099991, 26.77049388200004], [-77.91539466099994, 26.77643463700008], [-77.91307532499991, 26.757879950000074], [-77.91808020699995, 26.737494208000044], [-77.92080644399994, 26.716945705000057], [-77.90294348899994, 26.681586005000042], [-77.90217037699995, 26.66242096600007], [-77.91055253799993, 26.646307684000078], [-77.92906653599994, 26.639227606000077], [-77.93626868399991, 26.641791083000044], [-77.9531957669999, 26.654852606000077], [-77.96255449099993, 26.65973541900007], [-77.97541256399995, 26.661769924000055], [-78.04076087099992, 26.65843333500004], [-78.10033118399991, 26.64606354400007], [-78.23770620099992, 26.621325470000045], [-78.29338578699992, 26.621300259000066], [-78.50340735599991, 26.573065497000073], [-78.52147376199991, 26.570379950000074], [-78.54015051999994, 26.565008856000077], [-78.57046464799993, 26.541571356000077], [-78.59007727799991, 26.53620026200008]]], [[[-77.81236731699994, 26.906805731000077], [-77.83067786399994, 26.909409898000035], [-77.90977942599994, 26.904038804000038], [-77.9414770169999, 26.89354075700004], [-77.96255449099993, 26.893052476000037], [-77.95962480399993, 26.896958726000037], [-77.95665442599994, 26.89842357000009], [-77.94945227799991, 26.89988841400009], [-77.91344153599994, 26.92096588700008], [-77.86815344999991, 26.92841217700004], [-77.77448482999995, 26.92723216400009], [-77.68236243399991, 26.90843333500004], [-77.62979081899994, 26.90420156500005], [-77.60684160099993, 26.920396226000037], [-77.55357825399994, 26.89801666900007], [-77.51130123599995, 26.869533596000053], [-77.32795162699995, 26.709133205000057], [-77.30711829299992, 26.696437893000052], [-77.28368079299992, 26.68968333500004], [-77.25059973899994, 26.68768952000005], [-77.25914466099994, 26.676703192000048], [-77.27261308499993, 26.673000393000052], [-77.30524654899995, 26.67401764500005], [-77.29059811099995, 26.646958726000037], [-77.26988684799994, 26.625067450000074], [-77.24388587099992, 26.610500393000052], [-77.18276933499993, 26.60028717700004], [-77.15526282499991, 26.58808014500005], [-77.10724850199995, 26.556708075000074], [-77.07054602799991, 26.53851959800005], [-77.05882727799991, 26.529364325000074], [-77.04979407499991, 26.51634349200009], [-77.0423070949999, 26.49803294500009], [-77.04214433499993, 26.48183828300006], [-77.05540930899991, 26.47479889500005], [-77.05858313699991, 26.46784088700008], [-77.05882727799991, 26.42324453300006], [-77.05540930899991, 26.40692780200004], [-77.04625403599994, 26.396307684000078], [-77.03294837099992, 26.389878648000035], [-77.01720130099994, 26.385972398000035], [-77.03001868399991, 26.36273834800005], [-77.03156490799995, 26.355292059000078], [-77.02928626199991, 26.34442780200004], [-77.02440344999991, 26.337591864000046], [-77.01943925699993, 26.33270905200004], [-77.01720130099994, 26.32762278900009], [-77.01610266799992, 26.319525458000044], [-77.01475989499994, 26.315659898000035], [-77.01650956899994, 26.311712958000044], [-77.0247289699999, 26.30345286700009], [-77.03270423099991, 26.297430731000077], [-77.04100501199991, 26.293768622000073], [-77.05882727799991, 26.29043203300006], [-77.05675208199995, 26.294663804000038], [-77.05199133999992, 26.30963776200008], [-77.08446204299992, 26.30613841400009], [-77.1153051419999, 26.29043203300006], [-77.1426488919999, 26.26825592700004], [-77.16494706899994, 26.245428778000075], [-77.17438717399995, 26.22068919500009], [-77.18321692599994, 26.144273179000038], [-77.1817113919999, 26.12531159100007], [-77.19220943899995, 26.06899648600006], [-77.18716386599993, 25.98847077000005], [-77.1907445949999, 25.91632721600007], [-77.22667395699995, 25.88507721600007], [-77.25304114499994, 25.897609768000052], [-77.27623450399994, 25.92601146000004], [-77.29271399599992, 25.95726146000004], [-77.29898027299993, 25.97793203300006], [-77.31505286399994, 25.99095286700009], [-77.38817298099991, 26.00543854400007], [-77.4082738919999, 26.029730536000045], [-77.39207923099991, 26.029852606000077], [-77.37393144399994, 26.03546784100007], [-77.35912024599992, 26.04588450700004], [-77.34788977799991, 26.07062409100007], [-77.33560136599993, 26.07367584800005], [-77.32103430899991, 26.07518138200004], [-77.30894934799994, 26.080633856000077], [-77.27236894399994, 26.118312893000052], [-77.24893144399994, 26.136053778000075], [-77.22329667899993, 26.145819403000075], [-77.2298070949999, 26.153998114000046], [-77.23379472599993, 26.162258205000057], [-77.23582923099991, 26.171698309000078], [-77.23631751199991, 26.183661200000074], [-77.24034583199995, 26.190578518000052], [-77.24876868399991, 26.196519273000035], [-77.25641842399995, 26.203924872000073], [-77.25804602799991, 26.21474844000005], [-77.25182044199994, 26.22601959800005], [-77.24250240799995, 26.234523830000057], [-77.23387610599991, 26.24404531500005], [-77.23013261599993, 26.258734442000048], [-77.23058020699995, 26.285101630000042], [-77.23338782499991, 26.298000393000052], [-77.25035559799994, 26.313055731000077], [-77.21861731699994, 26.355292059000078], [-77.21987870999993, 26.364935614000046], [-77.22862708199995, 26.37693919500009], [-77.23013261599993, 26.44745514500005], [-77.21544348899994, 26.447699286000045], [-77.20457923099991, 26.45331452000005], [-77.19619706899994, 26.46287669500009], [-77.18919837099992, 26.47479889500005], [-77.18809973899994, 26.479803778000075], [-77.18919837099992, 26.498968817000048], [-77.18643144399994, 26.505926825000074], [-77.18016516799992, 26.51007721600007], [-77.17300370999993, 26.512844143000052], [-77.16808020699995, 26.515773830000057], [-77.15794837099992, 26.53143952000005], [-77.15355383999992, 26.54946523600006], [-77.16071529899995, 26.564195054000038], [-77.19615637899994, 26.572658596000053], [-77.21955318899995, 26.582424221000053], [-77.31216386599993, 26.594671942000048], [-77.32974199099993, 26.60455963700008], [-77.34097245999993, 26.621527411000045], [-77.35301673099991, 26.64606354400007], [-77.34845943899995, 26.652167059000078], [-77.34732011599993, 26.660305080000057], [-77.35008704299992, 26.66901276200008], [-77.36143958199995, 26.68231842700004], [-77.36656653599994, 26.693019924000055], [-77.37010657499991, 26.69790273600006], [-77.37535559799994, 26.69953034100007], [-77.38003495999993, 26.695705471000053], [-77.38491777299993, 26.690334377000056], [-77.39085852799991, 26.68768952000005], [-77.41124426999994, 26.689398505000042], [-77.42699133999992, 26.695135809000078], [-77.43399003799993, 26.705511786000045], [-77.42813066299993, 26.721177476000037], [-77.44469153599994, 26.755072333000044], [-77.49022376199991, 26.82330963700008], [-77.51748613199993, 26.85219961100006], [-77.53441321499992, 26.86318594000005], [-77.55622311099995, 26.87055084800005], [-77.57848059799994, 26.871161200000074], [-77.5969945949999, 26.86204661700009], [-77.61432857999995, 26.85651276200008], [-77.63805091099994, 26.859930731000077], [-77.69684811099995, 26.877346096000053], [-77.71495520699995, 26.879380601000037], [-77.75462805899991, 26.879461981000077], [-77.76642818899995, 26.88279857000009], [-77.79466712099992, 26.899725653000075], [-77.81236731699994, 26.906805731000077]]], [[[-79.51402747299994, 23.49567291900007], [-79.51756751199991, 23.49404531500005], [-79.53661048099991, 23.50649648600006], [-79.5384008449999, 23.510239976000037], [-79.51402747299994, 23.49567291900007]]], [[[-79.56334387899994, 23.546698309000078], [-79.55288652299993, 23.533758856000077], [-79.55455481699994, 23.533148505000042], [-79.59434973899994, 23.574652411000045], [-79.58869381399995, 23.57135651200008], [-79.56334387899994, 23.546698309000078]]], [[[-79.26870683499993, 25.53856028900009], [-79.26650956899994, 25.53782786700009], [-79.26211503799993, 25.52806224200009], [-79.26431230399993, 25.52879466400009], [-79.26870683499993, 25.53856028900009]]], [[[-79.28892981699994, 25.559149481000077], [-79.28844153599994, 25.562974351000037], [-79.27940833199995, 25.551662502000056], [-79.27989661399994, 25.547796942000048], [-79.28892981699994, 25.559149481000077]]], [[[-75.72207597599993, 22.20258209800005], [-75.71816972599993, 22.195786851000037], [-75.71471106699994, 22.182928778000075], [-75.72191321499992, 22.17536041900007], [-75.73436438699991, 22.175034898000035], [-75.74266516799992, 22.183254299000055], [-75.74852454299992, 22.19668203300006], [-75.74974524599992, 22.20453522300005], [-75.74502519399994, 22.20575592700004], [-75.73912512899994, 22.203924872000073], [-75.73302161399994, 22.199774481000077], [-75.73399817599994, 22.205959377000056], [-75.73949133999992, 22.22284577000005], [-75.73623613199993, 22.22479889500005], [-75.73143469999991, 22.21820709800005], [-75.72207597599993, 22.20258209800005]]], [[[-75.74596106699994, 22.236029364000046], [-75.74966386599993, 22.234849351000037], [-75.75340735599991, 22.23737213700008], [-75.75186113199993, 22.26325104400007], [-75.74754798099991, 22.261460679000038], [-75.74486243399991, 22.244696356000077], [-75.74596106699994, 22.236029364000046]]], [[[-75.81167558499993, 22.371568101000037], [-75.80785071499992, 22.365668036000045], [-75.80264238199993, 22.353176174000055], [-75.80549068899995, 22.347601630000042], [-75.81314042899993, 22.356268622000073], [-75.82017981699994, 22.37132396000004], [-75.82363847599993, 22.38572825700004], [-75.81956946499992, 22.388413804000038], [-75.81362870999993, 22.377875067000048], [-75.81167558499993, 22.371568101000037]]], [[[-73.61817706699992, 22.601249625000037], [-73.60598340899992, 22.60949395500006], [-73.59379446199995, 22.601993096000058], [-73.60761801299992, 22.57725526300004], [-73.62549800399995, 22.574257902000056], [-73.61817706699992, 22.601249625000037]]], [[[-75.10903886599993, 23.846909898000035], [-75.10606848899994, 23.842352606000077], [-75.10578365799995, 23.83144765800006], [-75.11070716099994, 23.81867096600007], [-75.11742102799991, 23.81513092700004], [-75.12364661399994, 23.831000067000048], [-75.11729895699995, 23.845445054000038], [-75.10903886599993, 23.846909898000035]]], [[[-77.8692113919999, 24.346828518000052], [-77.83975175699993, 24.350083726000037], [-77.83283443899995, 24.349554755000042], [-77.83702551999994, 24.342189846000053], [-77.84862219999991, 24.32758209800005], [-77.86729895699995, 24.319484768000052], [-77.88369706899994, 24.327337958000044], [-77.88361568899995, 24.341131903000075], [-77.8692113919999, 24.346828518000052]]], [[[-76.77432206899994, 24.53864166900007], [-76.77306067599994, 24.531724351000037], [-76.77257239499994, 24.51911041900007], [-76.77892005099994, 24.51434967700004], [-76.78929602799991, 24.518500067000048], [-76.79507402299993, 24.53143952000005], [-76.79238847599993, 24.54913971600007], [-76.78465735599991, 24.55296458500004], [-76.77749589799993, 24.543850002000056], [-76.77432206899994, 24.53864166900007]]], [[[-77.86412512899994, 25.407904364000046], [-77.87950598899994, 25.407863674000055], [-77.88841712099992, 25.408758856000077], [-77.90672766799992, 25.409084377000056], [-77.90587317599994, 25.410956122000073], [-77.90001380099994, 25.41547272300005], [-77.89240475199995, 25.41868724200009], [-77.88630123599995, 25.419175523000035], [-77.87482662699995, 25.41828034100007], [-77.85912024599992, 25.419256903000075], [-77.84727942599994, 25.425848700000074], [-77.83958899599992, 25.43496328300006], [-77.83682206899994, 25.434515692000048], [-77.84215247299994, 25.42324453300006], [-77.85204016799992, 25.41274648600006], [-77.86412512899994, 25.407904364000046]]], [[[-79.2500707669999, 25.774725653000075], [-79.24608313699991, 25.76386139500005], [-79.24323482999995, 25.74290599200009], [-79.24592037699995, 25.73456452000005], [-79.24803626199991, 25.73895905200004], [-79.25462805899991, 25.736029364000046], [-79.26695716099994, 25.732489325000074], [-79.26870683499993, 25.74160390800006], [-79.26170813699991, 25.756659247000073], [-79.26553300699993, 25.76162344000005], [-79.27904212099992, 25.74998607000009], [-79.28624426999994, 25.741522528000075], [-79.29157467399995, 25.73383209800005], [-79.29385331899994, 25.72068919500009], [-79.28331458199995, 25.71279531500005], [-79.26813717399995, 25.707098700000074], [-79.25804602799991, 25.699042059000078], [-79.26183020699995, 25.693752346000053], [-79.28917395699995, 25.697658596000053], [-79.30064856699994, 25.69794342700004], [-79.30426998599995, 25.702337958000044], [-79.30125891799992, 25.716864325000074], [-79.29381262899994, 25.736029364000046], [-79.28034420499995, 25.75722890800006], [-79.2610570949999, 25.771918036000045], [-79.2500707669999, 25.774725653000075]]], [[[-77.24425208199995, 26.478461005000042], [-77.2376195949999, 26.47406647300005], [-77.23607337099992, 26.470363674000055], [-77.23656165299991, 26.46938711100006], [-77.23843339799993, 26.47016022300005], [-77.24209550699993, 26.47060781500005], [-77.24299068899995, 26.46906159100007], [-77.24071204299992, 26.467352606000077], [-77.24046790299991, 26.466620184000078], [-77.24250240799995, 26.46621328300006], [-77.24351966099994, 26.454413153000075], [-77.24103756399995, 26.44281647300005], [-77.24665279899995, 26.438666083000044], [-77.25055904899995, 26.43821849200009], [-77.25454667899993, 26.43813711100006], [-77.26329505099994, 26.442206122000073], [-77.26744544199994, 26.453273830000057], [-77.27232825399994, 26.460679429000038], [-77.27822831899994, 26.46580638200004], [-77.2766820949999, 26.469956773000035], [-77.27236894399994, 26.46946849200009], [-77.26756751199991, 26.47256094000005], [-77.26183020699995, 26.477850653000075], [-77.25377356699994, 26.48004791900007], [-77.24425208199995, 26.478461005000042]]], [[[-77.85383053299995, 26.600775458000044], [-77.84845943899995, 26.605536200000074], [-77.83751380099994, 26.61351146000004], [-77.83462480399993, 26.610541083000044], [-77.84361731699994, 26.600734768000052], [-77.84707597599993, 26.594875393000052], [-77.84715735599991, 26.59052155200004], [-77.85187740799995, 26.583319403000075], [-77.85558020699995, 26.572739976000037], [-77.86192786399994, 26.564113674000055], [-77.86839758999992, 26.56386953300006], [-77.87051347599993, 26.56671784100007], [-77.87287350199995, 26.57054271000004], [-77.88658606699994, 26.585598049000055], [-77.89110266799992, 26.59406159100007], [-77.89313717399995, 26.60260651200008], [-77.88780676999994, 26.606594143000052], [-77.85757402299993, 26.611761786000045], [-77.85309811099995, 26.60700104400007], [-77.86241614499994, 26.596625067000048], [-77.86449133999992, 26.59365469000005], [-77.85708574099993, 26.59784577000005], [-77.85383053299995, 26.600775458000044]]]], "type": "MultiPolygon"}, "id": "0", "properties": {"ISO_Code": "BHS", "Level": "ADM0", "SOVEREIGNT": "Commonwealth of The Bahamas"}, "type": "Feature"}], "type": "FeatureCollection"});
</script>
</html>